Skip to content

Commit

Permalink
Merge pull request #1 from ForbesLindesay/fix-readme
Browse files Browse the repository at this point in the history
fix typos in readme
  • Loading branch information
timoxley committed Nov 17, 2012
2 parents 0a4ed16 + 915e3ff commit bc70588
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

```js
// Array-likes
var divs = document.getElementsByTagName('div') `NodeList` of `HTMLDivElement`
var divs = document.getElementsByTagName('div') // `NodeList` of `HTMLDivElement`
toArray(divs) // => Array of `HTMLDivElement`

(function() {
Expand All @@ -28,7 +28,7 @@ toArray(new Date) // => [Wed Nov 07 2012 04:40:26 GMT+1000 (EST)]

// Special cases
toArray(undefined) // => []
toArray(window) // => []
toArray(window) // => [window]

```

Expand Down

0 comments on commit bc70588

Please sign in to comment.