This commit is contained in:
Robin Müller 2020-06-23 13:49:25 +02:00
parent 5f16d30d82
commit 67366c25a0
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ typedef uint16_t ReturnValue_t;
class HasReturnvaluesIF {
public:
static const ReturnValue_t RETURN_OK = 0;
//! This will be the alll-ones value irrespective of used unsigned datatype.
//! This will be the all-ones value irrespective of used unsigned datatype.
static const ReturnValue_t RETURN_FAILED = -1;
virtual ~HasReturnvaluesIF() {}
};