Skip to content

Commit 6201b8d

Browse files
author
Amanda Butler
authored
Edit TDBStore.h
Edit file for punctuation and consistent tense.
1 parent 5c68c52 commit 6201b8d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

features/storage/kvstore/tdbstore/TDBStore.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class TDBStore : public KVStore {
4141
*
4242
* @param[in] bd Underlying block device. The BlockDevice
4343
* can be any BlockDevice with flash characteristics.
44-
* If using a non flash BlockDevice, like SDBlockDevice,
44+
* If using a BlockDevice without flash, such as SDBlockDevice,
4545
* please add the FlashSimBlockDevice on top of it.
4646
*
4747
* @returns none
@@ -57,7 +57,7 @@ class TDBStore : public KVStore {
5757

5858
/**
5959
* @brief Initialize TDBStore. If data exists, TDBStore will check the data integrity
60-
* on initialize. If Integrity checks fails the TDBStore will use GC to collect
60+
* on initialize. If the integrity checks fails, the TDBStore will use GC to collect
6161
* the available data and clean corrupted and erroneous records.
6262
*
6363
* @returns MBED_SUCCESS Success.
@@ -157,7 +157,7 @@ class TDBStore : public KVStore {
157157

158158
/**
159159
* @brief Start an incremental TDBStore set sequence. This operation is blocking other operations.
160-
* Any get/set/remove/iterator operation will be blocked until set_finalize will be called.
160+
* Any get/set/remove/iterator operation will be blocked until set_finalize is called.
161161
*
162162
* @param[out] handle Returned incremental set handle.
163163
* @param[in] key Key - must not include '*' '/' '?' ':' ';' '\' '"' '|' ' ' '<' '>' '\'.
@@ -246,8 +246,8 @@ class TDBStore : public KVStore {
246246
virtual int iterator_close(iterator_t it);
247247

248248
/**
249-
* @brief Set data in reserved area which is a special location for special data such as ROT.
250-
* The data written to reserved area can not be overwritten.
249+
* @brief Set data in reserved area, which is a special location for special data, such as ROT.
250+
* The data written to reserved area can't be overwritten.
251251
*
252252
* @param[in] reserved_data Reserved data buffer.
253253
* @param[in] reserved_data_buf_size
@@ -263,7 +263,7 @@ class TDBStore : public KVStore {
263263
virtual int reserved_data_set(const void *reserved_data, size_t reserved_data_buf_size);
264264

265265
/**
266-
* @brief Get data from reserved area which is a special location for special data such as ROT.
266+
* @brief Get data from reserved area, which is a special location for special data, such as ROT.
267267
*
268268
* @param[in] reserved_data Reserved data buffer.
269269
* @param[in] reserved_data_buf_size

0 commit comments

Comments
 (0)