Skip to content

Commit 7cc3281

Browse files
committed
capitalizing types that are constructors
1 parent 8cef7f1 commit 7cc3281

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
@@ -37,9 +37,9 @@
3737

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

40-
+ `string`
41-
+ `number`
42-
+ `boolean`
40+
+ `String`
41+
+ `Number`
42+
+ `Boolean`
4343
+ `null`
4444
+ `undefined`
4545

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

56-
+ `object`
57-
+ `array`
58-
+ `function`
56+
+ `Object`
57+
+ `Array`
58+
+ `Function`
5959

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

0 commit comments

Comments
 (0)