diff options
author | Lukas Larsson <[email protected]> | 2014-01-27 16:14:10 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2014-01-27 16:14:10 +0100 |
commit | 302954c0641ba679fb33a003c0a665b7b4a79a0e (patch) | |
tree | 06b9158ff3c54ea4e07c2bd94eab91a1ba4bf6c7 /lib/syntax_tools/src | |
parent | e59682eae1b7c04bfa011f40f202c0ab5a6527cd (diff) | |
download | otp-302954c0641ba679fb33a003c0a665b7b4a79a0e.tar.gz otp-302954c0641ba679fb33a003c0a665b7b4a79a0e.tar.bz2 otp-302954c0641ba679fb33a003c0a665b7b4a79a0e.zip |
17.0 anchor and broken links fixes
Diffstat (limited to 'lib/syntax_tools/src')
-rw-r--r-- | lib/syntax_tools/src/erl_syntax.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/syntax_tools/src/erl_syntax.erl b/lib/syntax_tools/src/erl_syntax.erl index 82be9aa489..4f7f9e83ac 100644 --- a/lib/syntax_tools/src/erl_syntax.erl +++ b/lib/syntax_tools/src/erl_syntax.erl @@ -512,7 +512,7 @@ %% @see macro/2 %% @see match_expr/2 %% @see module_qualifier/2 -%% @see named_fun_expr/1 +%% @see named_fun_expr/2 %% @see nil/0 %% @see operator/1 %% @see parentheses/1 @@ -5699,7 +5699,7 @@ named_fun_expr_name(Node) -> %% ===================================================================== %% @doc Returns the list of clause subtrees of a `named_fun_expr' node. %% -%% @see named_fun_expr/1 +%% @see named_fun_expr/2 -spec named_fun_expr_clauses(syntaxTree()) -> [syntaxTree()]. @@ -5722,7 +5722,7 @@ named_fun_expr_clauses(Node) -> %% syntax tree `C' of type `clause' such that %% `clause_patterns(C)' is a nonempty list. %% -%% @see named_fun_expr/1 +%% @see named_fun_expr/2 %% @see named_fun_expr_clauses/1 %% @see clause/3 %% @see clause_patterns/1 |