Index: sources/canbus/messageglobals.h =================================================================== diff -u -r618891879f5cdc68e37ee68eea005afb76dd4e5b -rb2f52190a9b70505a30cafeec4d1c2b43205b91a --- sources/canbus/messageglobals.h (.../messageglobals.h) (revision 618891879f5cdc68e37ee68eea005afb76dd4e5b) +++ sources/canbus/messageglobals.h (.../messageglobals.h) (revision b2f52190a9b70505a30cafeec4d1c2b43205b91a) @@ -188,15 +188,15 @@ // coco begin validated:Has been validated manually. // Since the crc is part of the data and there is no message without crc // initialized flag and data.length() == 0 became the same. - // It's been preferred too keep it as it is so the initialization would be independent of the data. + // It is preferred to keep it as is so that the initialization is independent of data. return !initialized || !data.length(); // coco end } bool isComplete() { // coco begin validated:Has been validated manually. // Since the crc is part of the data and there is no message without crc // then a message would never be empty. - // I prefer too keep it as it is so the initialization would be independent of the data. + // It is preferred to keep it as is so that the initialization is independent of data. return !isEmpty() && data.length() == length; // coco end }