diff options
author | Lukas Larsson <[email protected]> | 2018-07-23 13:15:02 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-07-23 13:15:02 +0200 |
commit | 408352c6c2c484c6100a02d86f163d2dc814f542 (patch) | |
tree | 125d3d8df79a15e1830eeadde0946c7305558fb8 | |
parent | 0874ef1548a3e556c303415cf2e0dc1169e056a4 (diff) | |
parent | 6f94995aa58125a3652fbb2523de348a77ce2440 (diff) | |
download | otp-408352c6c2c484c6100a02d86f163d2dc814f542.tar.gz otp-408352c6c2c484c6100a02d86f163d2dc814f542.tar.bz2 otp-408352c6c2c484c6100a02d86f163d2dc814f542.zip |
Merge pull request #1887 from goofansu/xmerl/string-equiv-typo-fix
Fix typo in xmerl_scan:string/1
-rw-r--r-- | lib/xmerl/src/xmerl_scan.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmerl/src/xmerl_scan.erl b/lib/xmerl/src/xmerl_scan.erl index a1f6ad4e2c..a7538180e6 100644 --- a/lib/xmerl/src/xmerl_scan.erl +++ b/lib/xmerl/src/xmerl_scan.erl @@ -279,7 +279,7 @@ int_file_decl(F, Options,_ExtCharset) -> %% @spec string(Text::list()) -> {xmlElement(),Rest} %% Rest = list() -%% @equiv string(Test, []) +%% @equiv string(Text, []) string(Str) -> string(Str, []). |