diff options
author | Lars Thorsen <[email protected]> | 2016-09-07 15:29:56 +0200 |
---|---|---|
committer | Lars Thorsen <[email protected]> | 2016-09-12 08:26:11 +0200 |
commit | 7a9b12187c4265eba16aa75ee45301f7f2c586e8 (patch) | |
tree | 11e47bf14ba08157eeee3a959121ab3364dfa4cc /lib/xmerl/src/xmerl_xpath.erl | |
parent | 04e8e3716a02c262e2569c94c4dba67d1782a1e9 (diff) | |
download | otp-7a9b12187c4265eba16aa75ee45301f7f2c586e8.tar.gz otp-7a9b12187c4265eba16aa75ee45301f7f2c586e8.tar.bz2 otp-7a9b12187c4265eba16aa75ee45301f7f2c586e8.zip |
[xmerl] Fix link problems in documentation
Diffstat (limited to 'lib/xmerl/src/xmerl_xpath.erl')
-rw-r--r-- | lib/xmerl/src/xmerl_xpath.erl | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/lib/xmerl/src/xmerl_xpath.erl b/lib/xmerl/src/xmerl_xpath.erl index bbebda1030..6146feba49 100644 --- a/lib/xmerl/src/xmerl_xpath.erl +++ b/lib/xmerl/src/xmerl_xpath.erl @@ -43,13 +43,27 @@ %% </pre> %% %% @type nodeEntity() = -%% xmlElement() -%% | xmlAttribute() -%% | xmlText() -%% | xmlPI() -%% | xmlComment() -%% | xmlNsNode() -%% | xmlDocument() +%% #xmlElement{} +%% | #xmlAttribute{} +%% | #xmlText{} +%% | #xmlPI{} +%% | #xmlComment{} +%% | #xmlNsNode{} +%% | #xmlDocument{} +%% +%% @type docNodes() = #xmlElement{} +%% | #xmlAttribute{} +%% | #xmlText{} +%% | #xmlPI{} +%% | #xmlComment{} +%% | #xmlNsNode{} +%% +%% @type docEntity() = #xmlDocument{} | [docNodes()] +%% +%% @type xPathString() = string() +%% +%% @type parentList() = [{atom(), integer()}] +%% %% @type option_list(). <p>Options allows to customize the behaviour of the %% XPath scanner. %% </p> @@ -115,7 +129,7 @@ string(Str, Doc, Options) -> %% Parents = parentList() %% Doc = nodeEntity() %% Options = option_list() -%% Scalar = xmlObj +%% Scalar = #xmlObj{} %% @doc Extracts the nodes from the parsed XML tree according to XPath. %% xmlObj is a record with fields type and value, %% where type is boolean | number | string |