scss exects semicolon (#36779)

copy/pasting the SCSS example into VSCode results in linter warning. Fixed with semicolon on variable assignment. Added the second semicolon for consistency.



## Documentation / Examples

- [ ] Make sure the linting passes by running `yarn lint`


Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com>
This commit is contained in:
Robert Keyser 2022-05-12 11:29:01 -05:00 committed by GitHub
parent b596ce9d6a
commit 66d98e2fc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -189,10 +189,10 @@ For example, using the exported `primaryColor` Sass variable:
```scss ```scss
/* variables.module.scss */ /* variables.module.scss */
$primary-color: #64FF00 $primary-color: #64ff00;
:export { :export {
primaryColor: $primary-color primaryColor: $primary-color;
} }
``` ```