aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-12-04 15:25:24 -0800
committerMark Otto <[email protected]>2014-12-04 15:25:24 -0800
commit7bc020cce0b8fab30f4068ed76fe3c01d3717621 (patch)
tree02e0ac3227d3f8bb4a5d7fa05d821678587beea5 /docs/getting-started
parentd05e58449acf87a214c129f37913104aaa452c1d (diff)
downloadbootstrap-7bc020cce0b8fab30f4068ed76fe3c01d3717621.tar.xz
bootstrap-7bc020cce0b8fab30f4068ed76fe3c01d3717621.zip
sass, not less
Diffstat (limited to 'docs/getting-started')
-rw-r--r--docs/getting-started/compiling.md6
-rw-r--r--docs/getting-started/contents.md6
-rw-r--r--docs/getting-started/download.md4
3 files changed, 8 insertions, 8 deletions
diff --git a/docs/getting-started/compiling.md b/docs/getting-started/compiling.md
index c6efae159..7a12becf7 100644
--- a/docs/getting-started/compiling.md
+++ b/docs/getting-started/compiling.md
@@ -21,10 +21,10 @@ When completed, you'll be able to run the various Grunt commands provided from t
### Available Grunt commands
#### Build - `grunt`
-Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [Less](http://lesscss.org/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
+Run `grunt` to run tests locally and compile the CSS and JavaScript into `/dist`. **Uses [Sass](http://sass-lang.com/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
#### Only compile CSS and JavaScript - `grunt dist`
-`grunt dist` creates the `/dist` directory with compiled files. **Uses [Less](http://lesscss.org/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
+`grunt dist` creates the `/dist` directory with compiled files. **Uses [Sass](http://sass-lang.com/) and [UglifyJS](http://lisperator.net/uglifyjs/).**
#### Tests - `grunt test`
Runs [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headlessly in [PhantomJS](http://phantomjs.org/) (used for CI).
@@ -33,7 +33,7 @@ Runs [JSHint](http://jshint.com) and [QUnit](http://qunitjs.com/) tests headless
Builds and tests CSS, JavaScript, and other assets which are used when running the documentation locally via `jekyll serve`.
#### Watch - `grunt watch`
-This is a convenience method for watching just Less files and automatically building them whenever you save.
+This is a convenience method for watching just Sass files and automatically building them whenever you save.
### Troubleshooting dependencies
diff --git a/docs/getting-started/contents.md b/docs/getting-started/contents.md
index 450b24751..89e7894f0 100644
--- a/docs/getting-started/contents.md
+++ b/docs/getting-started/contents.md
@@ -31,7 +31,7 @@ This is the most basic form of Bootstrap: precompiled files for quick drop-in us
### Bootstrap source code
-The Bootstrap source code download includes the precompiled CSS and JavaScript assets, along with source Less, JavaScript, and documentation. More specifically, it includes the following and more:
+The Bootstrap source code download includes the precompiled CSS and JavaScript assets, along with source Sass, JavaScript, and documentation. More specifically, it includes the following and more:
{% highlight bash %}
bootstrap/
@@ -41,7 +41,7 @@ bootstrap/
├── docs/
│ └── examples/
├── js/
-└── less/
+└── scss/
{% endhighlight %}
-The `less/` and `js/` are the source code for our CSS and JavaScript. The `dist/` folder includes everything listed in the precompiled download section above. The `docs/` folder includes the source code for our documentation, and `examples/` of Bootstrap usage. Beyond that, any other included file provides support for packages, license information, and development.
+The `scss/` and `js/` are the source code for our CSS and JavaScript. The `dist/` folder includes everything listed in the precompiled download section above. The `docs/` folder includes the source code for our documentation, and `examples/` of Bootstrap usage. Beyond that, any other included file provides support for packages, license information, and development.
diff --git a/docs/getting-started/download.md b/docs/getting-started/download.md
index cdcb770ba..981554cca 100644
--- a/docs/getting-started/download.md
+++ b/docs/getting-started/download.md
@@ -13,13 +13,13 @@ Compiled and minified CSS and JavaScript. No docs or original source files are i
### Download source and docs
-Source Less, JavaScript, and documentation. **Requires a Less compiler and [some setup](#grunt).**
+Source Sass, JavaScript, and documentation. **Requires a Sass compiler and [some setup](#grunt).**
<a href="{{ site.download.source }}" class="btn btn-lg btn-outline" role="button" onclick="ga('send', 'event', 'Getting started', 'Download', 'Download source');">Download source</a>
### Bower
-You can also install and manage Bootstrap's Less, CSS, and JavaScript using [Bower](http://bower.io).
+You can also install and manage Bootstrap's Sass, CSS, and JavaScript using [Bower](http://bower.io).
{% highlight bash %}$ bower install bootstrap{% endhighlight %}