Skip to content

Commit

Permalink
Fix a couple list documentation bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
nex3 committed Nov 11, 2010
1 parent 99a7b12 commit 0378c8f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions doc-src/SASS_CHANGELOG.md
Expand Up @@ -86,6 +86,17 @@ For example:
}
}

is compiled to:

.puma-icon {
background-image: url('/images/puma.png'); }
.sea-slug-icon {
background-image: url('/images/sea-slug.png'); }
.egret-icon {
background-image: url('/images/egret.png'); }
.salamander-icon {
background-image: url('/images/salamander.png'); }

### Backwards Incompatibilities -- Must Read!

* When `@import` is given a path without `.sass`, `.scss`, or `.css` extension,
Expand Down
16 changes: 8 additions & 8 deletions doc-src/SASS_REFERENCE.md
Expand Up @@ -1494,14 +1494,14 @@ For example:

is compiled to:

.puma-icon {
background-image: url('/images/puma.png'); }
.sea-slug-icon {
background-image: url('/images/sea-slug.png'); }
.egret-icon {
background-image: url('/images/egret.png'); }
.salamander-icon {
background-image: url('/images/salamander.png'); }
.puma-icon {
background-image: url('/images/puma.png'); }
.sea-slug-icon {
background-image: url('/images/sea-slug.png'); }
.egret-icon {
background-image: url('/images/egret.png'); }
.salamander-icon {
background-image: url('/images/salamander.png'); }

### `@while`

Expand Down

0 comments on commit 0378c8f

Please sign in to comment.