@@ -29,7 +29,7 @@ class EdgeMapper {
2929
3030 // / \brief Creates an edge mapper based on a GraphProto object.
3131 // /
32- // / \note If state of graph_proto will be changed , the information from edge mapper
32+ // / \note If the state of graph_proto changes , the information from the edge mapper
3333 // / is outdated. In such a case the update method should be called.
3434 // /
3535 // / \param graph_proto Reference to a GraphProto object.
@@ -39,37 +39,37 @@ class EdgeMapper {
3939 // / and an input (input name or input index).
4040 // /
4141 // / \note The node name can be ambiguous (many ONNX nodes can have the same name).
42- // / In such a case the algorthim tries to match the given node name
42+ // / In such a case the algorithm tries to match the given node name
4343 // / with the input name (providing an input index is not enough).
4444 // / If a unique edge is found, it will be returned.
4545 // / If InputEdge cannot be determined based on parameter values an
46- // / ov:Exception will be thrown.
46+ // / ov:: Exception will be thrown.
4747 // /
4848 // / \param node An EditorNode helper structure created based on a node name
4949 // / or a node output name.
5050 // /
51- // / \param input An EditorInput helper structure created based on a input name
52- // / or a input index.
51+ // / \param input An EditorInput helper structure created based on an input name
52+ // / or an input index.
5353 InputEdge find_input_edge (const EditorNode& node, const EditorInput& input) const ;
5454
5555 // / \brief Returns an OutputEdge based on a node (node name or output name)
5656 // / and an output (output name or output index).
5757 // /
5858 // / \note The node name can be ambiguous (many ONNX nodes can have the same name).
59- // / In such a case the algorthim will try to match the given node name
59+ // / In such a case the algorithm will try to match the given node name
6060 // / with the output name (providing an output index is not enough).
61- // / If after such operation a found edge is unique, it is returned.
61+ // / If the found edge is unique after such an operation , it is returned.
6262 // / If OutputEdge cannot be determined based on given params an
6363 // / ov::Exception is thrown.
6464 // /
6565 // / \param node An EditorNode helper structure created based on a node name
6666 // / or a node output name.
6767 // /
68- // / \param output An EditorOutput helper structure created based on a output name
69- // / or a output index.
68+ // / \param output An EditorOutput helper structure created based on an output name
69+ // / or an output index.
7070 OutputEdge find_output_edge (const EditorNode& node, const EditorOutput& output) const ;
7171
72- // / \brief Returns an OutputEdge based on a output name.
72+ // / \brief Returns an OutputEdge based on an output name.
7373 // /
7474 // / \note The output name guarantees the uniqueness of the edge.
7575 // /
0 commit comments