From df84097076cefe627e8a6d1d6623e1937bfc98de Mon Sep 17 00:00:00 2001 From: "bernard.xiong@gmail.com" Date: Tue, 31 Jan 2012 12:20:58 +0000 Subject: [PATCH] fix the spelling issue. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1934 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/dfs/include/dfs_init.h | 4 ++-- components/dfs/src/dfs_fs.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/dfs/include/dfs_init.h b/components/dfs/include/dfs_init.h index 061e0e23e8..7fcc15e962 100644 --- a/components/dfs/include/dfs_init.h +++ b/components/dfs/include/dfs_init.h @@ -19,10 +19,10 @@ extern "C" { #endif -/* initilization of dfs */ +/* Initialization of dfs */ void dfs_init(void); -/* initilization of dfs with filesystem server */ +/* Initialization of dfs with filesystem server */ void dfs_server_init(void); #ifdef __cplusplus diff --git a/components/dfs/src/dfs_fs.c b/components/dfs/src/dfs_fs.c index fc27fe354a..c4681746e5 100644 --- a/components/dfs/src/dfs_fs.c +++ b/components/dfs/src/dfs_fs.c @@ -277,7 +277,7 @@ int dfs_mount(const char *device_name, const char *path, } } - /* find out en empty filesystem table entry */ + /* find out an empty filesystem table entry */ for (index = 0; index < DFS_FILESYSTEMS_MAX && filesystem_table[index].ops != RT_NULL; index++) ; if (index == DFS_FILESYSTEMS_MAX) /* can't find en empty filesystem table entry */