Skip to content

Commit 77a931b

Browse files
author
Amanda Butler
authored
Edit FileSystemStore.h
Make minor edits, mostly for consistent tense across documents.
1 parent cdcf14e commit 77a931b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

features/storage/kvstore/filesystemstore/FileSystemStore.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class FileSystemStore : public KVStore {
3636
public:
3737
/** Create FileSystemStore - A Key Value API on top of FS
3838
*
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
4040
*/
4141
FileSystemStore(FileSystem *fs);
4242

@@ -46,8 +46,8 @@ class FileSystemStore : public KVStore {
4646
virtual ~FileSystemStore() {}
4747

4848
/**
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.
5151
*
5252
* @returns MBED_SUCCESS Success.
5353
* MBED_ERROR_FAILED_OPERATION Underlying file system failed operation.
@@ -138,7 +138,7 @@ class FileSystemStore : public KVStore {
138138

139139
/**
140140
* @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.
142142
*
143143
* @param[out] handle Returned incremental set handle.
144144
* @param[in] key Key - must not include '*' '/' '?' ':' ';' '\' '"' '|' ' ' '<' '>' '\'.
@@ -156,7 +156,7 @@ class FileSystemStore : public KVStore {
156156

157157
/**
158158
* @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.
160160
*
161161
* @param[in] handle Incremental set handle.
162162
* @param[in] value_data Value data to add.

0 commit comments

Comments
 (0)