summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorCésar Suárez Ortega <suarez.ortega.cesar@gmail.com>2016-10-15 16:21:45 +0200
committerven <vendethiel@hotmail.fr>2016-10-15 16:21:45 +0200
commit81ce1c4b71452a27eaaa1113e967d426c8b3a1b2 (patch)
treef8f23068bba63c233773acc63dc0136eac342554
parent58c97eea697c58134f4d313765cda496d5b26a5c (diff)
[sass/en] Fix typos in Sass tutorial (#2458)
* Fix typos in Sass tutorial * Restore contributors meta info
-rw-r--r--sass.html.markdown10
1 files changed, 4 insertions, 6 deletions
diff --git a/sass.html.markdown b/sass.html.markdown
index 802b40f4..860e550a 100644
--- a/sass.html.markdown
+++ b/sass.html.markdown
@@ -95,7 +95,7 @@ Useful for checking variables while debugging your SCSS. */
/* @for is a control loop that iterates through a range of values.
Particularly useful for setting styles on a collection of items.
-There are two forms, "through" and "to." The former includes the last value,
+There are two forms, "through" and "to". The former includes the last value,
the latter stops at the last value. */
@for $c from 1 to 4 {
@@ -206,7 +206,7 @@ $social-links: facebook twitter linkedin reddit;
}
-/*Mixins
+/* Mixins
==============================*/
/* If you find you are writing the same code for more than one
@@ -301,7 +301,7 @@ body {
mixins. When trying to choose between a function or a mixin, remember
that mixins are best for generating CSS while functions are better for
logic that might be used throughout your Sass code. The examples in
- the Math Operators' section are ideal candidates for becoming a reusable
+ the 'Math Operators' section are ideal candidates for becoming a reusable
function. */
/* This function will take a target size and the parent size and calculate
@@ -577,9 +577,7 @@ You can use either syntax, just go into the settings and select either Sass or S
## Compatibility
-Sass can be used in any project as long as you have a program to compile it
-into CSS. You'll want to verify that the CSS you're using is compatible
-with your target browsers.
+Sass can be used in any project as long as you have a program to compile it into CSS. You'll want to verify that the CSS you're using is compatible with your target browsers.
[QuirksMode CSS](http://www.quirksmode.org/css/) and [CanIUse](http://caniuse.com) are great resources for checking compatibility.