@@ -41,7 +41,7 @@ class TDBStore : public KVStore {
41
41
*
42
42
* @param[in] bd Underlying block device. The BlockDevice
43
43
* 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,
45
45
* please add the FlashSimBlockDevice on top of it.
46
46
*
47
47
* @returns none
@@ -57,7 +57,7 @@ class TDBStore : public KVStore {
57
57
58
58
/* *
59
59
* @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
61
61
* the available data and clean corrupted and erroneous records.
62
62
*
63
63
* @returns MBED_SUCCESS Success.
@@ -157,7 +157,7 @@ class TDBStore : public KVStore {
157
157
158
158
/* *
159
159
* @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.
161
161
*
162
162
* @param[out] handle Returned incremental set handle.
163
163
* @param[in] key Key - must not include '*' '/' '?' ':' ';' '\' '"' '|' ' ' '<' '>' '\'.
@@ -246,8 +246,8 @@ class TDBStore : public KVStore {
246
246
virtual int iterator_close (iterator_t it);
247
247
248
248
/* *
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.
251
251
*
252
252
* @param[in] reserved_data Reserved data buffer.
253
253
* @param[in] reserved_data_buf_size
@@ -263,7 +263,7 @@ class TDBStore : public KVStore {
263
263
virtual int reserved_data_set (const void *reserved_data, size_t reserved_data_buf_size);
264
264
265
265
/* *
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.
267
267
*
268
268
* @param[in] reserved_data Reserved data buffer.
269
269
* @param[in] reserved_data_buf_size
0 commit comments