From cc3eda9b9d01360773dd0e96dc08d432d47ec18a Mon Sep 17 00:00:00 2001 From: Amanda Butler Date: Mon, 20 Aug 2018 15:11:53 -0500 Subject: [PATCH] Copy edit CellularInformation.h Copy edit file for parallelism and active voice. --- features/cellular/framework/API/CellularInformation.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/cellular/framework/API/CellularInformation.h b/features/cellular/framework/API/CellularInformation.h index 09c276aa83..9199292207 100644 --- a/features/cellular/framework/API/CellularInformation.h +++ b/features/cellular/framework/API/CellularInformation.h @@ -44,7 +44,7 @@ public: * @param buf manufacturer identification * @param buf_size max length of manufacturer identification is 2048 characters * @return NSAPI_ERROR_OK on success - * NSAPI_ERROR_DEVICE_ERROR on case of failure + * NSAPI_ERROR_DEVICE_ERROR on failure */ virtual nsapi_size_or_error_t get_manufacturer(char *buf, size_t buf_size) = 0; @@ -53,7 +53,7 @@ public: * @param buf model identification * @param buf_size max length of model identification is 2048 characters * @return NSAPI_ERROR_OK on success - * NSAPI_ERROR_DEVICE_ERROR on case of failure + * NSAPI_ERROR_DEVICE_ERROR on failure */ virtual nsapi_size_or_error_t get_model(char *buf, size_t buf_size) = 0; @@ -62,7 +62,7 @@ public: * @param buf revision identification * @param buf_size max length of revision identification is 2048 characters * @return NSAPI_ERROR_OK on success - * NSAPI_ERROR_DEVICE_ERROR on case of failure + * NSAPI_ERROR_DEVICE_ERROR on failure */ virtual nsapi_size_or_error_t get_revision(char *buf, size_t buf_size) = 0; };