X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/7b78a5a287827db9e9b16286f3604aef69b37c5c..70702af1370e44e32fb2c3c507e4759a187b4fe5:/fatfs/doc/en/chdir.html diff --git a/fatfs/doc/en/chdir.html b/fatfs/doc/en/chdir.html index 063b8f5..41935fc 100644 --- a/fatfs/doc/en/chdir.html +++ b/fatfs/doc/en/chdir.html @@ -25,7 +25,7 @@ FRESULT f_chdir (

Parameters

path
-
Pointer to the null-terminated string that specifies a directory to go.
+
Pointer to the null-terminated string that specifies the directory to go.
@@ -50,7 +50,7 @@ FRESULT f_chdir (

Description

-

The f_chdir() function changes the current directory of the logical drive. The current directory of a drive is initialized to the root directory when the drive is auto-mounted. Note that the current directory is retained in the each file system object so that it also affects other tasks that using the volume.

+

The f_chdir function changes the current directory of the logical drive. The current directory of a drive is set to the root directory when the drive is mounted. Note that the current directory is retained in the each file system object, so that it also affects other tasks that use the volume.

@@ -63,10 +63,10 @@ FRESULT f_chdir (

Example

-    /* Change current direcoty of the current drive (dir1 under root dir) */
+    /* Change current direcoty of the current drive ('dir1' under root directory) */
     f_chdir("/dir1");
 
-    /* Change current direcoty of drive 2 (parent dir) */
+    /* Change current direcoty of drive 2 (parent directory) */
     f_chdir("2:..");