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

github.com/twbs/rfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvoltaek <volt43k@gmail.com>2020-06-02 21:56:11 +0300
committerMartijn Cuppens <martijn.cuppens@gmail.com>2020-06-02 23:13:04 +0300
commitff686b124d1752000649af96d2380c0119bbc446 (patch)
tree3c150bd38bf35553e4906d1d24ec8a06e073424b /README.md
parentea1afeba8b8d2f7696188e87282f5205758c0386 (diff)
README Documentation Typo Fix: 'space' -> 'comma'
Several examples in the README documentation mention escaping a space character, but then show escaping a comma character instead. This is a quick fix for those. Note that I haven't gone through other files in the repo to check if they have that same or similar typos, so this may need adjusted elsewhere as well if this phrase was copy/pasted around in other documentation.
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index b383cad..73b5892 100644
--- a/README.md
+++ b/README.md
@@ -98,7 +98,7 @@ project/
// For properties which do not have a shorthand, the property can be passed:
// @include rfs(4rem, border-radius);
- // Whenever a value contains a space, it should be escaped with `#{}`:
+ // Whenever a value contains a comma, it should be escaped with `#{}`:
// @include rfs(0 0 4rem red #{","} 0 0 5rem blue, box-shadow);
// Custom properties (css variables):
@@ -189,7 +189,7 @@ project/
// For properties which do not have a shorthand, the property can be passed:
// +rfs(4rem, border-radius)
- // Whenever a value contains a space, it should be escaped with `#{}`:
+ // Whenever a value contains a comma, it should be escaped with `#{}`:
// +rfs(0 0 4rem red #{","} 0 0 5rem blue, box-shadow)
// Custom properties (css variables):
@@ -329,7 +329,7 @@ project/
// For properties which do not have a shorthand, the property can be passed as:
// .rfs(4rem, border-radius);
- // Whenever a value contains a space, it should be escaped with a tilde(~):
+ // Whenever a value contains a comma, it should be escaped with a tilde(~):
// .rfs(0 0 4rem red ~"," 0 0 5rem blue, box-shadow)
// Custom properties (css variables):
@@ -420,7 +420,7 @@ project/
// For properties which do not have a shorthand, the property can be passed as:
// rfs(4rem, border-radius)
- // Whenever a value contains a space, it should be escaped with a backslash:
+ // Whenever a value contains a comma, it should be escaped with a backslash:
// rfs(0 0 4rem red \, 0 0 5rem blue, box-shadow)
// Custom properties (css variables):