Skip to content

Commit 1b9f30d

Browse files
authored
Merge pull request #246 from angelayanpan/angelayanpan-doc-typo
small typo in doc
2 parents bd0a31c + f834fec commit 1b9f30d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

guides/writing-addons/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ To see all options for `ember addon`, refer to the [CLI commands reference](../a
2222

2323
In some ways, an addon is like a mini Ember app. It has a very similar file structure, uses a lot of the same API methods, and can do most things that apps can do.
2424

25-
Let's take a look a some of the most important files and folders in an addon, and how they are different from what you would find in an app.
25+
Let's take a look at some of the most important files and folders in an addon, and how they are different from what you would find in an app.
2626

2727
#### `addon/`
2828

guides/writing-addons/intro-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ To automatically include CSS styling for your addon, create a `styles` directory
114114

115115
When our addon is used in an app, these CSS rules will be added to the end of the app's `vendor.css` when it is built or served. The rules will be in the same scope as the rest of the app's CSS, so name your class selectors wisely! Otherwise they will clash with the styles of other addons or the app's own styling.
116116

117-
For example, writing a CSS rule for `div` is problematic, because it will affect all `div`s in the app, but a rule targeting `.my-app-name div` is probably fine.
117+
For example, writing a CSS rule for `div` is problematic because it will affect all `div`s in the app, but a rule targeting `.my-app-name div` is probably fine.
118118

119119
Let's add a class to our template and some styles to target the class:
120120

0 commit comments

Comments
 (0)