[coco] Fix typo in comment (#2911)
author박천교/On-Device Lab(SR)/Engineer/삼성전자 <ch.bahk@samsung.com>
Fri, 25 Jan 2019 01:32:17 +0000 (10:32 +0900)
committer박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Fri, 25 Jan 2019 01:32:17 +0000 (10:32 +0900)
This commit corrects 'breif' into 'brief' in coco

Signed-off-by: Cheongyo Bahk <ch.bahk@samsung.com>
contrib/coco/core/include/coco/ADT/PtrManager.h
contrib/coco/core/include/coco/IR/Module.h
contrib/coco/core/include/coco/IR/Object.h

index 7633405..2b254c7 100644 (file)
@@ -28,7 +28,7 @@ namespace coco
 template <typename T> class PtrManager
 {
 public:
-  /// @breif Return the number of managed objects
+  /// @brief Return the number of managed objects
   uint32_t size(void) const { return _ptrs.size(); }
 
 public:
index 1a818f2..9eb0b24 100644 (file)
@@ -28,7 +28,7 @@ namespace coco
 {
 
 /**
- * @breif Top-level element of coco IR which represents a neural network
+ * @brief Top-level element of coco IR which represents a neural network
  */
 class Module
 {
index 29a0535..28daefa 100644 (file)
@@ -32,7 +32,7 @@ namespace coco
 {
 
 /**
- * @breif Base interface on all typed NN values
+ * @brief Base interface on all typed NN values
  */
 class Object : public Entity
 {