From 70702af1370e44e32fb2c3c507e4759a187b4fe5 Mon Sep 17 00:00:00 2001 From: Leo C Date: Thu, 8 Sep 2016 19:15:27 +0200 Subject: Import fatfs R0.12b --- fatfs/doc/en/chdir.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '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:..");
 
-- cgit v1.2.3