diff options
author | Bruce Yinhe <[email protected]> | 2014-12-22 10:06:25 +0100 |
---|---|---|
committer | Bruce Yinhe <[email protected]> | 2014-12-22 10:06:25 +0100 |
commit | e2a09281ec8d60cd47f86caa59d41d3cd945d8bc (patch) | |
tree | 1ef69a6a3193b3ad63454ee55c6fcc8d13665d0c /lib/inets/src | |
parent | 5d7253640668e3a653a7053da3bf6ca69e47eb17 (diff) | |
parent | a8377a44bb81ab86a694c57f2f10527cf51612d4 (diff) | |
download | otp-e2a09281ec8d60cd47f86caa59d41d3cd945d8bc.tar.gz otp-e2a09281ec8d60cd47f86caa59d41d3cd945d8bc.tar.bz2 otp-e2a09281ec8d60cd47f86caa59d41d3cd945d8bc.zip |
Merge branch 'mikpe/fix-eacces-spelling' into maint
* mikpe/fix-eacces-spelling:
fix eacces spelling
Diffstat (limited to 'lib/inets/src')
-rw-r--r-- | lib/inets/src/http_server/httpd_conf.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/src/http_server/httpd_conf.erl b/lib/inets/src/http_server/httpd_conf.erl index 27446ca7fe..8f68d9fcd5 100644 --- a/lib/inets/src/http_server/httpd_conf.erl +++ b/lib/inets/src/http_server/httpd_conf.erl @@ -44,7 +44,7 @@ %% FilePath = string() %% Result = {ok,Directory} | {error,Reason} %% Directory = string() -%% Reason = string() | enoent | eaccess | enotdir | FileInfo +%% Reason = string() | enoent | eacces | enotdir | FileInfo %% FileInfo = File info record %% %% Description: Checks if FilePath is a directory in which case it is @@ -71,7 +71,7 @@ is_directory(_Type,_Access,FileInfo,_Directory) -> %% FilePath = string() %% Result = {ok,File} | {error,Reason} %% File = string() -%% Reason = string() | enoent | eaccess | enotdir | FileInfo +%% Reason = string() | enoent | eacces | enotdir | FileInfo %% FileInfo = File info record %% %% Description: Checks if FilePath is a regular file in which case it |