Skip to content

Commit

Permalink
[types] switch to lowercase to not confuse with constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
hshoff committed Dec 12, 2012
1 parent 3c9222a commit b74ba8b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -38,9 +38,9 @@

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

+ `String`
+ `Number`
+ `Boolean`
+ `string`
+ `number`
+ `boolean`
+ `null`
+ `undefined`

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

+ `Object`
+ `Array`
+ `Function`
+ `object`
+ `array`
+ `function`

```javascript
var foo = [1, 2],
Expand Down

0 comments on commit b74ba8b

Please sign in to comment.