From c499c4e74b296a71bf437a134dc3e6e796bcd2b1 Mon Sep 17 00:00:00 2001 From: John Date: Sat, 22 Jan 2022 15:28:52 +0100 Subject: [PATCH] spelling --- src/lib/ebus/data.h | 2 +- src/lib/ebus/message.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/ebus/data.h b/src/lib/ebus/data.h index bd56ac17..b4378e05 100755 --- a/src/lib/ebus/data.h +++ b/src/lib/ebus/data.h @@ -266,7 +266,7 @@ class DataField : public AttributedItem { /** * Get the specified field name. * @param fieldIndex the index of the field (excluding ignored fields), or -1 for this. - * @return the field name, or the index as string is not unique or not available. + * @return the field name, or the index as string if not unique or not available. */ virtual string getName(ssize_t fieldIndex) const = 0; diff --git a/src/lib/ebus/message.h b/src/lib/ebus/message.h index cfbe443b..f4a50fd8 100644 --- a/src/lib/ebus/message.h +++ b/src/lib/ebus/message.h @@ -282,7 +282,7 @@ class Message : public AttributedItem { /** * Get the specified field name. * @param fieldIndex the index of the field (excluding ignored fields). - * @return the field name, or the index as string if not unique, or empty not available. + * @return the field name, or the index as string if not unique or not available. */ string getFieldName(ssize_t fieldIndex) const { return m_data->getName(fieldIndex); }