[typo] Fix typo
authorSeoHyungjun <hyungjun.seo@samsung.com>
Fri, 9 Dec 2022 01:44:10 +0000 (10:44 +0900)
committerJijoong Moon <jijoong.moon@samsung.com>
Fri, 9 Dec 2022 03:24:27 +0000 (12:24 +0900)
fix the typo error in network_graph.h

the cbegin function returns a forward const iterator.
so, removed \'reverse\' from retval description.

Signed-off-by: SeoHyungjun <hyungjun.seo@samsung.com>
nntrainer/graph/network_graph.h

index 42c5972..55f0c08 100644 (file)
@@ -188,7 +188,7 @@ public:
 
   /**
    * @brief     get begin iterator for the graph
-   * @retval    const reverse iterator
+   * @retval    const iterator
    */
   graph_const_iterator<LayerNode> cbegin() const {
     return graph.cbegin<LayerNode>();