Skip to content

Commit d85259b

Browse files
committed
Readme
1 parent 9df1006 commit d85259b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
### Subject of a selector
3030
```javascript
31-
document.querySelector("div! a[href*=twitter]");// div
32-
document.querySelectorAll("body footer! div");// [footer]
31+
document.querySelector("div! a[href*=twitter]");// div that has **a** element with _href_ attribute that contains "twitter"
32+
document.querySelectorAll("body footer! div");// NodeList:[footer], if <footer> is in <body> and <footer> contains <div>
3333
```
3434
### :scope pseudo-class
3535
```javascript
@@ -73,8 +73,8 @@ The are few [GGC](http://closure-compiler.appspot.com/home) flags in script. You
7373

7474
## TODO
7575

76-
- Tests: coming coon
77-
- Benchmark: coming coon
76+
- Tests: coming soon
77+
- Benchmark: coming soon
7878

7979
## License
8080

0 commit comments

Comments
 (0)