diff options
author | Lars Thorsen <[email protected]> | 2016-09-12 10:48:41 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2016-09-12 10:48:41 +0200 |
commit | e1bcf7f909fbb109616e8c4efeecf9c714bf62b3 (patch) | |
tree | 79b6a45b7837e8263850013f413934fbf22a6474 /lib/xmerl/src/xmerl_scan.erl | |
parent | f792ea463770bbd4464cef347aef6e3f8606687b (diff) | |
parent | 5ee6a8af63c9d450e5cc6e9cfa9d5890adbde092 (diff) | |
download | otp-e1bcf7f909fbb109616e8c4efeecf9c714bf62b3.tar.gz otp-e1bcf7f909fbb109616e8c4efeecf9c714bf62b3.tar.bz2 otp-e1bcf7f909fbb109616e8c4efeecf9c714bf62b3.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/xmerl/src/xmerl_scan.erl')
-rw-r--r-- | lib/xmerl/src/xmerl_scan.erl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/xmerl/src/xmerl_scan.erl b/lib/xmerl/src/xmerl_scan.erl index 2147a46a13..5e0459ec21 100644 --- a/lib/xmerl/src/xmerl_scan.erl +++ b/lib/xmerl/src/xmerl_scan.erl @@ -111,13 +111,16 @@ %% <dd>Set to 'true' if xmerl should add to elements missing attributes %% with a defined default value (default 'false').</dd> %% </dl> +%% @type xmlElement() = #xmlElement{}. +%% The record definition is found in xmerl.hrl. +%% @type xmlDocument() = #xmlDocument{}. +%% The record definition is found in xmerl.hrl. %% @type document() = xmlElement() | xmlDocument(). <p> %% The document returned by <tt>xmerl_scan:string/[1,2]</tt> and %% <tt>xmerl_scan:file/[1,2]</tt>. The type of the returned record depends on %% the value of the document option passed to the function. %% </p> - -module(xmerl_scan). -vsn('0.20'). -date('03-09-16'). |