Skip to content

Commit a1182f4

Browse files
Change 4 whole lines
1 parent 0aeba43 commit a1182f4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
/target
2-
/test
2+
/tests
33
/Cargo.lock

docs/misc/datatypes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ Returns the type of the given value as a string.
5252
**Returns:** `String` - The type of the given value.
5353
!!! example
5454
```
55-
assert typeof(42) == "Number"
56-
assert typeof("Hello") == "String"
57-
assert typeof(true) == "Boolean"
55+
assert typeof(42) == "number"
56+
assert typeof("Hello") == "string"
57+
assert typeof(true) == "boolean"
5858
```
5959

6060
## `list_with_capacity(capacity)`

0 commit comments

Comments
 (0)