diff options
author | Patrik Nyblom <[email protected]> | 2012-02-07 16:05:14 +0100 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2012-02-07 16:05:14 +0100 |
commit | e9e34e8bd838ef99ed3bd0e88ff490614cbe78a1 (patch) | |
tree | aa20fea8c921b3460f8868ce905a4e2243d34dac /lib/stdlib/src/ets.erl | |
parent | 8853793b0edd01947829840f90c91a1e2468cc36 (diff) | |
parent | a02909a11a33880b486135b396aabfd3060b8d8d (diff) | |
download | otp-e9e34e8bd838ef99ed3bd0e88ff490614cbe78a1.tar.gz otp-e9e34e8bd838ef99ed3bd0e88ff490614cbe78a1.tar.bz2 otp-e9e34e8bd838ef99ed3bd0e88ff490614cbe78a1.zip |
Merge branch 'pan/bif_specs/OTP-9684'
* pan/bif_specs/OTP-9684:
Correct docs, comments and dialyzer tests
Reintroduce sensitive BIFs in erl_bif_types
Correct dializer errors in erlang.erl and others
Make erlang doc use specs from erlang.erl
erlang.erl with specs for all (but one) bif
Diffstat (limited to 'lib/stdlib/src/ets.erl')
-rw-r--r-- | lib/stdlib/src/ets.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/stdlib/src/ets.erl b/lib/stdlib/src/ets.erl index 4a96808810..817b397cc4 100644 --- a/lib/stdlib/src/ets.erl +++ b/lib/stdlib/src/ets.erl @@ -301,6 +301,7 @@ next(_, _) -> prev(_, _) -> erlang:nif_error(undef). +%% Shadowed by erl_bif_types: ets:rename/2 -spec rename(Tab, Name) -> Name when Tab :: tab(), Name :: atom(). |