docs: up to 31% more feature coverage

This commit is contained in:
AJ ONeal 2021-07-23 04:55:29 -06:00
parent 3987fabd36
commit c2bc44dbcf
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@ const div1 = $("div", body);
Selects all matching elements (or an empty `NodeList`):
```js
const stylesheets = $$('link[rel="stylesheet"]').map(console.log);
const head = $('head');
const stylesheets = $$('link[rel="stylesheet"]', head).map(console.log);
```
## Compatibility