diff options
author | Björn Gustavsson <[email protected]> | 2017-01-12 11:42:30 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2017-01-12 11:42:30 +0100 |
commit | e9c6524685ab63749ec88bcc4ed30ec7cbda8eb4 (patch) | |
tree | b5d456971324989fe5d4f958bd498c3c2e2aee2a /lib/stdlib | |
parent | 1ef677d76350ec14050a292fda47657f238fc496 (diff) | |
parent | ec4c519b8c40faaf30d677d01f4b912a2ea526ed (diff) | |
download | otp-e9c6524685ab63749ec88bcc4ed30ec7cbda8eb4.tar.gz otp-e9c6524685ab63749ec88bcc4ed30ec7cbda8eb4.tar.bz2 otp-e9c6524685ab63749ec88bcc4ed30ec7cbda8eb4.zip |
Merge pull request #1303 from bjorng/bjorn/kernel-stdlib-doc
Kernel/STDLIB: Remove references to OTP R12B and earlier
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/doc/src/ets.xml | 4 | ||||
-rw-r--r-- | lib/stdlib/doc/src/gen_fsm.xml | 5 | ||||
-rw-r--r-- | lib/stdlib/doc/src/gen_server.xml | 5 |
3 files changed, 0 insertions, 14 deletions
diff --git a/lib/stdlib/doc/src/ets.xml b/lib/stdlib/doc/src/ets.xml index 5f5d2b7f36..05401a2d40 100644 --- a/lib/stdlib/doc/src/ets.xml +++ b/lib/stdlib/doc/src/ets.xml @@ -541,10 +541,6 @@ Error: fun containing local Erlang function calls <c><anno>Tab</anno></c> is not of the correct type, or if <c><anno>Item</anno></c> is not one of the allowed values, a <c>badarg</c> exception is raised.</p> - <warning> - <p>In Erlang/OTP R11B and earlier, this function would not fail but - return <c>undefined</c> for invalid values for <c>Item</c>.</p> - </warning> <p>In addition to the <c>{<anno>Item</anno>,<anno>Value</anno>}</c> pairs defined for <seealso marker="#info/1"><c>info/1</c></seealso>, the following items are allowed:</p> diff --git a/lib/stdlib/doc/src/gen_fsm.xml b/lib/stdlib/doc/src/gen_fsm.xml index de06987d38..719ab2b558 100644 --- a/lib/stdlib/doc/src/gen_fsm.xml +++ b/lib/stdlib/doc/src/gen_fsm.xml @@ -534,11 +534,6 @@ gen_fsm:sync_send_all_state_event -----> Module:handle_sync_event/4 the function call fails.</p> <p>Return value <c>Reply</c> is defined in the return value of <c>Module:StateName/3</c>.</p> - <note> - <p>The ancient behavior of sometimes consuming the server - exit message if the server died during the call while - linked to the client was removed in Erlang 5.6/OTP R12B.</p> - </note> </desc> </func> </funcs> diff --git a/lib/stdlib/doc/src/gen_server.xml b/lib/stdlib/doc/src/gen_server.xml index 4a7dd60858..662076b5f0 100644 --- a/lib/stdlib/doc/src/gen_server.xml +++ b/lib/stdlib/doc/src/gen_server.xml @@ -162,11 +162,6 @@ gen_server:abcast -----> Module:handle_cast/2 of <c>Module:handle_call/3</c>.</p> <p>The call can fail for many reasons, including time-out and the called <c>gen_server</c> process dying before or during the call.</p> - <note> - <p>The ancient behavior of sometimes consuming the server - exit message if the server died during the call while - linked to the client was removed in Erlang 5.6/OTP R12B.</p> - </note> </desc> </func> |