summaryrefslogtreecommitdiff
path: root/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_register_2_func.txt
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_register_2_func.txt')
-rw-r--r--lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_register_2_func.txt13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_register_2_func.txt b/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_register_2_func.txt
index aa1ea7ef8d..b4b5c8a543 100644
--- a/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_register_2_func.txt
+++ b/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_register_2_func.txt
@@ -2,14 +2,19 @@
-spec register(RegName, PidOrPort) -> true
 when RegName :: atom(), PidOrPort :: port() | pid().
- Associates the name RegName with a process identifier (pid) or a
- port identifier. RegName, which must be an atom, can be used
- instead of the pid or port identifier in send operator (RegName !
- Message). Example:
+ Registers the name RegName with a process identifier (pid) or a
+ port identifier in the name registry. RegName, which must be
+ an atom, can be used instead of the pid or port identifier in send
+ operator (RegName ! Message) and most other BIFs that take a pid
+ or port identifies as an argument. Example:
> register(db, Pid).
true
+ The registered name is considered a Directly Visible Erlang
+ Resource and is automatically unregistered when the process
+ terminates.
+
Failures:
badarg: