summaryrefslogtreecommitdiffstats
path: root/runtime/doc/builtin.txt
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-12-14 20:03:03 +0100
committerChristian Brabandt <cb@256bit.org>2023-12-14 20:03:03 +0100
commit2a71b54d35361f3f0c24db88c672b426f8acc7b7 (patch)
tree824d224a7e013bfa77b57ff24a9becb00bb2ae45 /runtime/doc/builtin.txt
parentd2e1c83962d4b392d1876d341c739d204553d01b (diff)
patch 9.0.2162: Vim9: type documentation out-datedv9.0.2162
Problem: Vim9: type documentation out-dated Solution: Update documentation, fix typo in type alias definition closes: #13684 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/doc/builtin.txt')
-rw-r--r--runtime/doc/builtin.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index c9b9938dd9..657fe8dbd6 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -10181,6 +10181,7 @@ type({expr}) The result is a Number representing the type of {expr}.
Blob: 10 |v:t_blob|
Class: 12 |v:t_class|
Object: 13 |v:t_object|
+ Typealias: 14 |v:t_typealias|
For backward compatibility, this method can be used: >
:if type(myvar) == type(0)
:if type(myvar) == type("")