Skip to content

Commit b74ba8b

Browse files
committed
[types] switch to lowercase to not confuse with constructors
1 parent 3c9222a commit b74ba8b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838

3939
- **Primitives**: When you access a primitive type you work directly on its value
4040

41-
+ `String`
42-
+ `Number`
43-
+ `Boolean`
41+
+ `string`
42+
+ `number`
43+
+ `boolean`
4444
+ `null`
4545
+ `undefined`
4646

@@ -54,9 +54,9 @@
5454
```
5555
- **Complex**: When you access a complex type you work on a reference to its value
5656

57-
+ `Object`
58-
+ `Array`
59-
+ `Function`
57+
+ `object`
58+
+ `array`
59+
+ `function`
6060

6161
```javascript
6262
var foo = [1, 2],

0 commit comments

Comments
 (0)