Move inline code snippets to code blocks

pull/8462/head
Kevin Gilbert 2018-10-17 17:26:39 -05:00 committed by kegilbert
parent fc41c3d8e3
commit 6b3bf28d0d
1 changed files with 10 additions and 4 deletions

View File

@ -35,12 +35,18 @@ namespace mbed {
* 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 the
* directories of an object of that type can be accessed by * directories of an object of that type can be accessed by either:
* DIR *d = opendir("/example/directory") (or opendir("/example") * @code
* to open the root of the filesystem), and then using readdir(d) etc. * DIR *d = opendir("/example/directory");
* @endcode
* or
* @code
* DIR *d = opendir("/example");
* @endcode
* 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* returned by opendir("/") will * FileSystem objects, so the DIR pointer returned by opendir("/") will
* reflect this. * reflect this.
* *
* @note to create a directory, @see Dir * @note to create a directory, @see Dir