Edit DirHandle.h

Edit for active voice.
pull/8637/head
Amanda Butler 2018-10-18 11:11:03 -05:00 committed by Cruz Monrreal II
parent 5f712f5e61
commit d80cf82827
1 changed files with 6 additions and 6 deletions

View File

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