diff options
author | Hans Bolinder <[email protected]> | 2018-05-07 15:08:27 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-05-07 15:08:27 +0200 |
commit | e781967c7902b98e90a05a23a7e6888014709a96 (patch) | |
tree | b241a0c6f4b33068d82f35b12599271278f5a09e /lib/compiler | |
parent | cd832e85a3029162c31659ca174efdf43a08c8d2 (diff) | |
parent | 1a6adf47cf8895a508cd76660ed69f1f3dfb0bcd (diff) | |
download | otp-e781967c7902b98e90a05a23a7e6888014709a96.tar.gz otp-e781967c7902b98e90a05a23a7e6888014709a96.tar.bz2 otp-e781967c7902b98e90a05a23a7e6888014709a96.zip |
Merge pull request #1800 from erszcz/master
Fix syntactic issues in EDoc comments across some libs
Diffstat (limited to 'lib/compiler')
-rw-r--r-- | lib/compiler/src/cerl_trees.erl | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/compiler/src/cerl_trees.erl b/lib/compiler/src/cerl_trees.erl index c7a129b42c..533c984221 100644 --- a/lib/compiler/src/cerl_trees.erl +++ b/lib/compiler/src/cerl_trees.erl @@ -351,10 +351,9 @@ mapfold(F, S0, T) -> mapfold(fun(T0, A) -> {T0, A} end, F, S0, T). -%% @spec mapfold(Pre, Post, Initial::term(), Tree::cerl()) -> -%% {cerl(), term()} -%% -%% Pre = Post = (cerl(), term()) -> {cerl(), term()} +%% @spec mapfold(Pre, Post, Initial::term(), Tree::cerl()) -> {cerl(), term()} +%% Pre = (cerl(), term()) -> {cerl(), term()} +%% Post = (cerl(), term()) -> {cerl(), term()} %% %% @doc Does a combined map/fold operation on the nodes of the %% tree. It begins by calling <code>Pre</code> on the tree, using the |