Skip to content

Commit c909e16

Browse files
committed
Merge pull request macropodhq#4 from petetnt/master
Fixed extensions in the README from json to js
2 parents d373879 + fdf3cc4 commit c909e16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = {
1717

1818
**input**
1919
```css
20-
~colors: "./constants.json";
20+
~colors: "./constants.js";
2121
.foo {
2222
color: primary from ~colors;
2323
}
@@ -44,7 +44,7 @@ module.exports = {
4444

4545
**input**
4646
```css
47-
~borders: "./constants.json";
47+
~borders: "./constants.js";
4848
.foo {
4949
border: weight from ~borders style from ~borders black;
5050
}
@@ -70,7 +70,7 @@ module.exports = {
7070

7171
**input**
7272
```css
73-
~queries: "./constants.json";
73+
~queries: "./constants.js";
7474

7575
@media (max-width: maxWidth from ~queries) {
7676
color: blue;

0 commit comments

Comments
 (0)