diff options
author | Ahmed Omar <[email protected]> | 2010-11-11 14:34:56 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-11-18 14:23:30 +0100 |
commit | 0709e6ebb5e7065b54b36f3c32e84f1de10261f6 (patch) | |
tree | 9fe23c5761d1b1045170cb5b0c43715c470071fc | |
parent | f26528bbea0a24674e797a58b97117c1f8cf163f (diff) | |
download | otp-0709e6ebb5e7065b54b36f3c32e84f1de10261f6.tar.gz otp-0709e6ebb5e7065b54b36f3c32e84f1de10261f6.tar.bz2 otp-0709e6ebb5e7065b54b36f3c32e84f1de10261f6.zip |
Fix escaped xml character and a missing closing tag in mod_auth.xml
In description of the list_users/2 function, the character < was escaped
and a closing tag was missing which resulted in an invalid xml and
a wrong formatting.
-rw-r--r-- | lib/inets/doc/src/mod_auth.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/inets/doc/src/mod_auth.xml b/lib/inets/doc/src/mod_auth.xml index f3628c8297..9503add2e0 100644 --- a/lib/inets/doc/src/mod_auth.xml +++ b/lib/inets/doc/src/mod_auth.xml @@ -111,7 +111,8 @@ </desc> </func> <func> - <name>list_users(Options) -> {ok, Users} | {error, Reason} <name>list_users(Port, Dir) -> {ok, Users} | {error, Reason}</name> + <name>list_users(Options) -> {ok, Users} | {error, Reason}</name> + <name>list_users(Port, Dir) -> {ok, Users} | {error, Reason}</name> <name>list_users(Address, Port, Dir) -> {ok, Users} | {error, Reason}</name> <fsummary>List users in the user database.</fsummary> <type> |