From e00c95625480f6c29e4a2b973ca2a2256f834a78 Mon Sep 17 00:00:00 2001 From: linkerzhang Date: Thu, 29 Nov 2018 17:54:30 -0800 Subject: [PATCH] update the comments. --- include/onnxruntime/core/graph/graph_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/onnxruntime/core/graph/graph_base.h b/include/onnxruntime/core/graph/graph_base.h index 948bcea5c4..3e31fc5c8d 100644 --- a/include/onnxruntime/core/graph/graph_base.h +++ b/include/onnxruntime/core/graph/graph_base.h @@ -130,7 +130,7 @@ class Node { return definitions_.input_defs; } - /** Gets a modifiable collection of the Node's input definitions. */ + /** Gets a modifiable collection of the Node's output definitions. */ std::vector& MutableOutputDefs() noexcept { return definitions_.output_defs; }