Browse Source

Fix error in docs

`HTMLCollection` doesn't have querySelector method
pull/4/head
Luke Childs 8 years ago
parent
commit
f5b4d1b6b3
  1. 2
      README.md

2
README.md

@ -52,7 +52,7 @@ const markup = `
const collection = createNode(markup);
// HTMLCollection
collection.querySelector('span:last-child').textContent;
collection[1].textContent;
// 'world'
```

Loading…
Cancel
Save