SIOT / Manchester
Revision:
6:7454ad91f714
Parent:
4:f2c392191c74
--- a/ManchesterMsg.h	Sun May 21 19:17:28 2017 +0000
+++ b/ManchesterMsg.h	Mon May 22 09:35:26 2017 +0000
@@ -3,7 +3,7 @@
  * @file    ManchesterMsg.h
  * @author  Zoltan Hudak
  * @version
- * @date    16-May-2017
+ * @date    2017-May-16
  * @brief   Message container
  ******************************************************************************
  * @attention
@@ -75,7 +75,7 @@
         return *this;
     }
 
-    /** Inserter operator: Appends string of char to message
+    /** Inserter operator: Appends array of char to message
      */
     ManchesterMsg &operator<<(const char* str) {
         size_t  strLen = strlen(str);
@@ -111,7 +111,7 @@
         return *this;
     }
 
-    /** Extractor operator: Extracts string of char from message
+    /** Extractor operator: Extracts array of char from message
      */
     ManchesterMsg &operator>>(char* str) {
         size_t  strLen = strlen(data);