Index: sources/canbus/messageglobals.h =================================================================== diff -u -r7c2a96774285bb618946f125763bf7bea7acadd8 -r618891879f5cdc68e37ee68eea005afb76dd4e5b --- sources/canbus/messageglobals.h (.../messageglobals.h) (revision 7c2a96774285bb618946f125763bf7bea7acadd8) +++ sources/canbus/messageglobals.h (.../messageglobals.h) (revision 618891879f5cdc68e37ee68eea005afb76dd4e5b) @@ -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. - // I preffer too keep it as it is so the initialization would be independent of the data. + // It's been preferred too keep it as it is so the initialization would be independent of the 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 preffer too keep it as it is so the initialization would be independent of the data. + // I prefer too keep it as it is so the initialization would be independent of the data. return !isEmpty() && data.length() == length; // coco end }