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/doc/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/doc/src')
-rw-r--r-- | lib/inets/doc/src/httpd_conf.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/inets/doc/src/httpd_conf.xml b/lib/inets/doc/src/httpd_conf.xml index 3ef03966a7..60fc2f135e 100644 --- a/lib/inets/doc/src/httpd_conf.xml +++ b/lib/inets/doc/src/httpd_conf.xml @@ -97,7 +97,7 @@ <v>FilePath = string()</v> <v>Result = {ok,Directory} | {error,Reason}</v> <v>Directory = string()</v> - <v>Reason = string() | enoent | eaccess | enotdir | FileInfo</v> + <v>Reason = string() | enoent | eacces | enotdir | FileInfo</v> <v>FileInfo = File info record</v> </type> <desc> @@ -105,7 +105,7 @@ <p><c>is_directory/1</c> checks if <c>FilePath</c> is a directory in which case it is returned. Please read <c>file(3)</c> for a description of <c>enoent</c>, - <c>eaccess</c> and <c>enotdir</c>. The definition of + <c>eacces</c> and <c>enotdir</c>. The definition of the file info record can be found by including <c>file.hrl</c> from the kernel application, see file(3).</p> @@ -120,14 +120,14 @@ <v>FilePath = string()</v> <v>Result = {ok,File} | {error,Reason}</v> <v>File = string()</v> - <v>Reason = string() | enoent | eaccess | enotdir | FileInfo</v> + <v>Reason = string() | enoent | eacces | enotdir | FileInfo</v> <v>FileInfo = File info record</v> </type> <desc> <marker id="is_file"></marker> <p><c>is_file/1</c> checks if <c>FilePath</c> is a regular file in which case it is returned. Read <c>file(3)</c> for a - description of <c>enoent</c>, <c>eaccess</c> and + description of <c>enoent</c>, <c>eacces</c> and <c>enotdir</c>. The definition of the file info record can be found by including <c>file.hrl</c> from the kernel application, see file(3).</p> |