summaryrefslogtreecommitdiff
path: root/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_raise_3_func.txt
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_raise_3_func.txt')
-rw-r--r--lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_raise_3_func.txt17
1 files changed, 8 insertions, 9 deletions
diff --git a/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_raise_3_func.txt b/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_raise_3_func.txt
index 407a06aab4..e661585ba6 100644
--- a/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_raise_3_func.txt
+++ b/lib/stdlib/test/shell_docs_SUITE_data/unknown_erlang_raise_3_func.txt
@@ -3,14 +3,13 @@
 when
 Class :: error | exit | throw,
 Reason :: term(),
-  Stacktrace :: raise_stacktrace().
+  Stacktrace ::
+  raise_stacktrace() | stacktrace().
Types:
-type raise_stacktrace() ::
[{module(), atom(), arity() | [term()]} |
- {function(), [term()]}] |
- [{module(), atom(), arity() | [term()], [{atom(), term()}]} |
- {function(), [term()], [{atom(), term()}]}].
+ {function(), arity() | [term()]}].
Raises an exception of the specified class, reason, and call stack
backtrace (stacktrace).
@@ -31,12 +30,12 @@
end
That is, a list of four-tuples {Module, Function, Arity | Args,
- Location}, where Module and Function are atoms, and the third
- element is an integer arity or an argument list. The stacktrace
- can also contain {Fun, Args, Location} tuples, where Fun is a
- local fun and Args is an argument list.
+ ExtraInfo}, where Module and Function are atoms, and the
+ third element is an integer arity or an argument list. The
+ stacktrace can also contain {Fun, Args, ExtraInfo} tuples, where 
+ Fun is a local fun and Args is an argument list.
- Element Location at the end is optional. Omitting it is
+ Element ExtraInfo at the end is optional. Omitting it is
equivalent to specifying an empty list.
The stacktrace is used as the exception stacktrace for the calling