summaryrefslogtreecommitdiffstats
path: root/runtime/doc/builtin.txt
diff options
context:
space:
mode:
authorYegappan Lakshmanan <4298407+yegappan@users.noreply.github.com>2023-10-02 12:50:45 -0700
committerGitHub <noreply@github.com>2023-10-02 21:50:45 +0200
commitcd39b69b0200005622db7291bbacff95bd03a3d0 (patch)
tree0f088dcb337bc05be99712e8fd0307956de8ddb8 /runtime/doc/builtin.txt
parent20f48d5b2ddb9fdc29e83f0da6f31f895eaeab47 (diff)
runtime(doc): add missing error numbers in the help. (#13241)
closes: #13240 Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/doc/builtin.txt')
-rw-r--r--runtime/doc/builtin.txt17
1 files changed, 10 insertions, 7 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index b4ea216f31..6eecd7afe3 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -1855,7 +1855,7 @@ cosh({expr}) *cosh()*
Compute()->cosh()
-count({comp}, {expr} [, {ic} [, {start}]]) *count()*
+count({comp}, {expr} [, {ic} [, {start}]]) *count()* *E706*
Return the number of times an item with value {expr} appears
in |String|, |List| or |Dictionary| {comp}.
@@ -5052,12 +5052,14 @@ insert({object}, {item} [, {idx}]) *insert()*
Can also be used as a |method|: >
mylist->insert(item)
-
-instanceof({object}, {class}) *instanceof()*
- The result is a Number, which is |TRUE| when the {object} argument is a
- direct or indirect instance of a |Class| specified by {class}.
- When {class} is a |List| the function returns |TRUE| when {object} is an
- instance of any of the specified classes.
+<
+ *instanceof()* *E614* *E616* *E693*
+instanceof({object}, {class})
+ The result is a Number, which is |TRUE| when the {object}
+ argument is a direct or indirect instance of a |Class|
+ specified by {class}.
+ When {class} is a |List| the function returns |TRUE| when
+ {object} is an instance of any of the specified classes.
Example: >
instanceof(animal, [Dog, Cat])
@@ -6689,6 +6691,7 @@ printf({fmt}, {expr1} ...) *printf()*
using a {n$} positional argument specifier. See |printf-$|.
+ *E1520*
The conversion specifiers and their meanings are:
*printf-d* *printf-b* *printf-B* *printf-o*