Skip to content

Commit fa619d4

Browse files
committed
Merge pull request #59 from goob/readme_links
Fixed broken links
2 parents a2e99f6 + aeeb828 commit fa619d4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Parsing CSS involves a series of steps:
3737
* Component values can then be parsed into generic rules or declarations.
3838
The header and body of rules as well as the value of declarations
3939
are still just lists of component values at this point.
40-
See [the `ast` module](ast.rs) for the data structures.
40+
See [the `ast` module](src/ast.rs) for the data structures.
4141

4242
* The last step of a full CSS parser is
4343
parsing the remaining component values
@@ -48,10 +48,10 @@ Parsing CSS involves a series of steps:
4848
which depends a lot on what you want to do:
4949
which properties you want to support, what you want to do with selectors, etc.
5050

51-
It does however provide some helper functions to parse [CSS colors](color.rs)
52-
and [An+B](nth.rs) (the argument to `:nth-child()` and related selectors.
51+
It does however provide some helper functions to parse [CSS colors](src/color.rs)
52+
and [An+B](src/nth.rs) (the argument to `:nth-child()` and related selectors.
5353

54-
See [Servo’s `style` crate](https://github.com/mozilla/servo/tree/master/src/components/style)
54+
See [Servo’s `style` crate](https://github.com/mozilla/servo/tree/master/components/style)
5555
for an example of a parser based on rust-cssparser.
5656

5757

0 commit comments

Comments
 (0)