Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rorschach.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <github@rebertia.com>2015-08-21 08:59:46 +0300
committerChris Rebert <github@rebertia.com>2015-08-21 08:59:46 +0300
commitf7a0d04e5fb5a1c6b8e5bda79acf9aae8a2f89ed (patch)
treea3c88897cd075ebcc903730dd8d250b9c5d56ac1
parentabe8d5583a7c47d680bb7b6290920153475f3866 (diff)
Fix docs part of #27
-rw-r--r--docs/css.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/css.md b/docs/css.md
index 9c0aea5..56d0337 100644
--- a/docs/css.md
+++ b/docs/css.md
@@ -1,5 +1,5 @@
-The CSS files in [`/bootstrap/dist/css/`](https://github.com/twbs/bootstrap/tree/master/dist/css) are compiled from the [Less](http://lesscss.org/) source files in [`/bootstrap/less/`](https://github.com/twbs/bootstrap/tree/master/less) via a [Grunt](http://gruntjs.com) task that invokes the [Less preprocessor](http://lesscss.org/). These compiled CSS files **should not be edited manually** when developing Bootstrap itself. Any such edits will be **overwritten and lost** the next time the Grunt task runs.
+The CSS files in [`/bootstrap/dist/css/`](https://github.com/twbs/bootstrap/tree/master/dist/css) are compiled from the [Sass](http://sass-lang.com/) source files in [`/bootstrap/scss/`](https://github.com/twbs/bootstrap/tree/master/scss) (or the [Less](http://lesscss.org/) source files in [`/bootstrap/less/`](https://github.com/twbs/bootstrap/tree/master/less)) via a [Grunt](http://gruntjs.com) task that invokes the [Sass preprocessor](http://sass-lang.com/) (or the [Less preprocessor](http://lesscss.org/)). These compiled CSS files **should not be edited manually** when developing Bootstrap itself. Any such edits will be **overwritten and lost** the next time the Grunt task runs.
-You should edit the `.less` source files in [`/bootstrap/less/`](https://github.com/twbs/bootstrap/tree/master/less) instead.
+You should edit the `.scss` source files in [`/bootstrap/scss/`](https://github.com/twbs/bootstrap/tree/master/scss) (or the `.less` source files in [`/bootstrap/less/`](https://github.com/twbs/bootstrap/tree/master/less)) instead.
-Bootstrap isn't written directly in CSS, but is instead written in [Less](http://lesscss.org/), a stylesheet language that compiles down to CSS.
+Bootstrap isn't written directly in CSS, but is instead written in [Sass](http://sass-lang.com/) (or in [Less](http://lesscss.org/)), stylesheet languages that compile down to CSS.