We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aeba43 commit a1182f4Copy full SHA for a1182f4
2 files changed
.gitignore
@@ -1,3 +1,3 @@
1
/target
2
-/test
+/tests
3
/Cargo.lock
docs/misc/datatypes.md
@@ -52,9 +52,9 @@ Returns the type of the given value as a string.
52
**Returns:** `String` - The type of the given value.
53
!!! example
54
```
55
- assert typeof(42) == "Number"
56
- assert typeof("Hello") == "String"
57
- assert typeof(true) == "Boolean"
+ assert typeof(42) == "number"
+ assert typeof("Hello") == "string"
+ assert typeof(true) == "boolean"
58
59
60
## `list_with_capacity(capacity)`
0 commit comments