aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorHenrik Nord <[email protected]>2011-09-01 15:40:18 +0200
committerHenrik Nord <[email protected]>2011-09-01 15:40:22 +0200
commiteb4aa9b65c8b50597ed8fae092555145e466e1dc (patch)
treea952a80b2761effa234117ff7f64163171c9ccbb /lib
parentbf2d853857bb0e3a7fd5a2660b22b6e743f91f1c (diff)
parent6a49d6d4e65be479bb2a234f522495ff193bdbc2 (diff)
downloadotp-eb4aa9b65c8b50597ed8fae092555145e466e1dc.tar.gz
otp-eb4aa9b65c8b50597ed8fae092555145e466e1dc.tar.bz2
otp-eb4aa9b65c8b50597ed8fae092555145e466e1dc.zip
Merge branch 'rc/stdlib-edoc-fix' into dev
* rc/stdlib-edoc-fix: fix broken edoc annotations OTP-9516
Diffstat (limited to 'lib')
-rw-r--r--lib/stdlib/src/eval_bits.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/stdlib/src/eval_bits.erl b/lib/stdlib/src/eval_bits.erl
index 2cbd6cdae7..2c7192a7e7 100644
--- a/lib/stdlib/src/eval_bits.erl
+++ b/lib/stdlib/src/eval_bits.erl
@@ -34,12 +34,12 @@
%% @type matchfun(). A closure which performs a match given a value, a
%% pattern and an environment
%%
-%% @type field() represents a field in a "bin"
+%% @type field(). Represents a field in a "bin".
%%% Part 1: expression evaluation (binary construction)
%% @spec expr_grp(Fields::[field()], Bindings::bindings(),
-%% EvalFun::evalfun()) ->
+%% EvalFun::evalfun(), term(), term()) ->
%% {value, binary(), bindings()}
%%
%% @doc Returns a tuple with {value,Bin,Bs} where Bin is the binary
@@ -192,9 +192,9 @@ bin_gen_field({bin_element,Line,VE,Size0,Options0},
end.
%%% Part 3: binary pattern matching
-%% @spec match_bits(Fields::[field()], Bin::binary()
+%% @spec match_bits(Fields::[field()], Bin::binary(),
%% GlobalEnv::bindings(), LocalEnv::bindings(),
-%% MatchFun::matchfun(),EvalFun::evalfun()) ->
+%% MatchFun::matchfun(),EvalFun::evalfun(), term()) ->
%% {match, bindings()}
%% @doc Used to perform matching. If the match succeeds a new
%% environment is returned. If the match have some syntactic or