@@ -36,7 +36,7 @@ class FileSystemStore : public KVStore {
36
36
public:
37
37
/* * Create FileSystemStore - A Key Value API on top of FS
38
38
*
39
- * @param fs File system (FAT/LITTLE) on top which FileSystemStore is adding KV API
39
+ * @param fs File system (FAT/LITTLE) on top of which FileSystemStore is adding KV API
40
40
*/
41
41
FileSystemStore (FileSystem *fs);
42
42
@@ -46,8 +46,8 @@ class FileSystemStore : public KVStore {
46
46
virtual ~FileSystemStore () {}
47
47
48
48
/* *
49
- * @brief Initialize FileSystemStore, Checking validity of
50
- * KVStore writing folder and if not exists creates it.
49
+ * @brief Initialize FileSystemStore, checking validity of
50
+ * KVStore writing folder and if it doesn't exist, creating it.
51
51
*
52
52
* @returns MBED_SUCCESS Success.
53
53
* MBED_ERROR_FAILED_OPERATION Underlying file system failed operation.
@@ -138,7 +138,7 @@ class FileSystemStore : public KVStore {
138
138
139
139
/* *
140
140
* @brief Start an incremental FileSystemStore set sequence. This operation is blocking other operations.
141
- * Any get/set/remove/iterator operation will be blocked until set_finalize will be called.
141
+ * Any get/set/remove/iterator operation will be blocked until set_finalize is called.
142
142
*
143
143
* @param[out] handle Returned incremental set handle.
144
144
* @param[in] key Key - must not include '*' '/' '?' ':' ';' '\' '"' '|' ' ' '<' '>' '\'.
@@ -156,7 +156,7 @@ class FileSystemStore : public KVStore {
156
156
157
157
/* *
158
158
* @brief Add data to incremental FileSystemStore set sequence. This operation is blocking other operations.
159
- * Any get/set/remove operation will be blocked until set_finalize will be called.
159
+ * Any get/set/remove operation will be blocked until set_finalize is called.
160
160
*
161
161
* @param[in] handle Incremental set handle.
162
162
* @param[in] value_data Value data to add.
0 commit comments