Skip to content

Commit 7f0ecf1

Browse files
committed
Fixed typos
1 parent 20c1914 commit 7f0ecf1

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

docs/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Learn more about this styleguide, particularly how it's built and who maintains
99

1010
Primer is GitHub's internal CSS framework. It includes basic global styling for typography, small components like buttons and tabs, and our general guidelines for writing HTML and CSS. It's been used internally at GitHub for years now.
1111

12-
Open-sourcing Primer means sharing and learning with the community. There's a lot we can improve upon in Primer, and help is always appreciated. While we don't currently plan on building this out as a competitor to other front-end frameworks, we will ocassionally add, remove, or modify things.
12+
Open-sourcing Primer means sharing and learning with the community. There's a lot we can improve upon in Primer, and help is always appreciated. While we don't currently plan on building this out as a competitor to other front-end frameworks, we will occasionally add, remove, or modify things.
1313

1414
### Future updates
1515

docs/avatars.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Be sure to set `width` and `height` attributes for maximum browser performance.
2222

2323
## Small avatars
2424

25-
We ocassionally use smaller avatars. Anything less than `48px` wide should include the `.avatar-small` modifier class to reset the `border-radius` to a more appropriate level.
25+
We occasionally use smaller avatars. Anything less than `48px` wide should include the `.avatar-small` modifier class to reset the `border-radius` to a more appropriate level.
2626

2727
{% example html %}
2828
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/u/9919?v=3&s=32" width="32" height="32">

docs/tooltips.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Tooltips
55

66
Add tooltips built entirely in CSS to nearly any element. Just add a few classes and an `aria-label` attribute.
77

8-
In addition, you'll want to specify a direcetion:
8+
In addition, you'll want to specify a direction:
99

1010
- `.tooltipped-n`
1111
- `.tooltipped-ne`

scss/_buttons.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170

171171
// Octicon buttons
172172
//
173-
// Improve alignemnt of Octicons within buttons and minibuttons. Also auto tweak
173+
// Improve alignment of Octicons within buttons and minibuttons. Also auto tweak
174174
// the right arrow to float right for ease of use.
175175
.btn {
176176
> .octicon-arrow-right {

scss/_forms.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ textarea {
4242
}
4343

4444
// Inputs with contrast for easy light gray backgrounds against white.
45-
// input.class is needed here to increase specifity over input[…]
45+
// input.class is needed here to increase specificity over input[…]
4646
input.input-contrast,
4747
.input-contrast {
4848
background-color: #fafafa;

scss/_layout.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
// Grid system
1010
//
11-
// Create rows with `.columns` to clear the flaoted columns and outdent the
11+
// Create rows with `.columns` to clear the floated columns and outdent the
1212
// padding on `.column`s with negative margin for alignment.
1313

1414
.columns {

scss/_states.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// A rounded corner box containing a lable "open" or "closed"
1+
// A rounded corner box containing a label "open" or "closed"
22
// Without a state it is grey.
33
//
44
// open - green background

scss/_truncate.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Truncate
22
//
3-
// css-truncate will shorten text with an elipsis.
3+
// css-truncate will shorten text with an ellipsis.
44

55
.css-truncate {
66
// Truncate double target
77
//
8-
// css-truncate will shorten text with an elipsis. The maximum width
8+
// css-truncate will shorten text with an ellipsis. The maximum width
99
// of the truncated text can be changed by overriding the max-width
1010
// of the .css-truncate-target
1111
&.css-truncate-target,

0 commit comments

Comments
 (0)