Skip to content

Commit cef8792

Browse files
committed
Fix small typos
1 parent dc14cc8 commit cef8792

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ email: harry@csswizardry.com
44
description: "High-level advice and guidelines for writing sane, manageable, scalable CSS"
55
baseurl: ""
66
url: "http://cssguidelin.es"
7-
version: 2.2.3
7+
version: 2.2.4
88

99
# Build settings
1010
markdown: kramdown

index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1339,7 +1339,7 @@ style everything inside of it:
13391339
#foo * {}
13401340

13411341
The problem with this selector is that the key selector (`*`) is very, _very_
1342-
far reaching. What this selector actually does is finds _every single_ node in
1342+
far reaching. What this selector actually does is find _every single_ node in
13431343
the DOM (even `<title>`, `<link>`, and `<head>` elements; _everything_) and then
13441344
looks to see if it lives anywhere at any level within `#foo`. This is a very,
13451345
_very_ expensive selector, and should most likely be avoided or rewritten.
@@ -2148,7 +2148,7 @@ Our mixin:
21482148
}
21492149

21502150
Now the two declarations only exist once, meaning we’re not repeating ourselves.
2151-
If we ever switch out our web-font, or move to a `font-weight: regular;`
2151+
If we ever switch out our web-font, or move to a `font-weight: normal;`
21522152
version, we only need to make that change in one place.
21532153

21542154
In short, only DRY code that is actually, thematically related. Do not try to

0 commit comments

Comments
 (0)