Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guides/writing-addons/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ To see all options for `ember addon`, refer to the [CLI commands reference](../a

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.

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.
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.

#### `addon/`

Expand Down
2 changes: 1 addition & 1 deletion guides/writing-addons/intro-tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ To automatically include CSS styling for your addon, create a `styles` directory

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.

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.
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.

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

Expand Down