Skip to content

Commit 1f9ef36

Browse files
author
Amanda Butler
authored
Edit DirHandle.h
Edit for active voice.
1 parent 7d604fe commit 1f9ef36

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

platform/DirHandle.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ namespace mbed {
3030
*/
3131

3232

33-
/** Represents a directory stream. Objects of this type are returned
34-
* by an opendir function. The core functions are read and seek,
33+
/** Represents a directory stream. An opendir function returns
34+
* objects of this type. The core functions are read and seek,
3535
* but only a subset needs to be provided.
3636
*
37-
* If a FileSystemLike class defines the opendir method, then the
38-
* directories of an object of that type can be accessed by either:
37+
* If a FileSystemLike class defines the opendir method, then you
38+
* can access the directories of an object of that type by either:
3939
* @code
4040
* DIR *d = opendir("/example/directory");
4141
* @endcode
@@ -46,8 +46,8 @@ namespace mbed {
4646
* to open the root of the file system.
4747
*
4848
* The root directory is considered to contain all FileHandle and
49-
* FileSystem objects, so the DIR pointer returned by opendir("/") will
50-
* reflect this.
49+
* FileSystem objects, so the DIR pointer returned by opendir("/")
50+
* reflects this.
5151
*
5252
* @note to create a directory, @see Dir
5353
* @note Synchronization level: Set by subclass

0 commit comments

Comments
 (0)