Skip to content

Commit

Permalink
fix: more code example typos
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisburnell committed Feb 2, 2023
1 parent 0335caf commit bfb7612
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.github
.vscode
.editorconfig
.prettier
.prettierrc
*.css
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ body {
```

```scss
+$bowhead-variable-as-default: false;
$bowhead-variable-as-default: false;

body {
color: v(color, brick);
Expand All @@ -207,8 +207,8 @@ body {
<h3 id="fallback">№ 2. Show Fallback Value</h3>

```scss
+$bowhead-variable-as-default: true;
+$bowhead-show-fallback: true;
$bowhead-variable-as-default: true;
$bowhead-show-fallback: true;

body {
@include v(color, desert);
Expand All @@ -223,8 +223,8 @@ body {
```

```scss
+$bowhead-variable-as-default: true;
+$bowhead-show-fallback: false;
$bowhead-variable-as-default: true;
$bowhead-show-fallback: false;

body {
@include v(color, desert);
Expand All @@ -240,8 +240,8 @@ body {
When <samp>$bowhead-variable-as-default</samp> is <samp>false</samp>, <samp>$bowhead-show-fallback</samp> has no effect.

```scss
+$bowhead-variable-as-default: false;
+$bowhead-show-fallback: true;
$bowhead-variable-as-default: false;
$bowhead-show-fallback: true;

body {
@include v(color, desert);
Expand All @@ -255,8 +255,8 @@ body {
```

```scss
+$bowhead-variable-as-default: false;
+$bowhead-show-fallback: false;
$bowhead-variable-as-default: false;
$bowhead-show-fallback: false;

body {
@include v(color, desert);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chrisburnell/bowhead",
"version": "0.3.3",
"version": "0.3.4",
"description": "Memorable and maintainable design tokens in SCSS",
"author": "Chris Burnell <me@chrisburnell.com>",
"license": "MIT",
Expand Down

0 comments on commit bfb7612

Please sign in to comment.