docs: Fix incorrect parentheses (#9629)

Merge pull request 9629
This commit is contained in:
KenHV 2024-09-15 18:57:44 +05:30 committed by GitHub
parent 96a5c80b59
commit 192360dd6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ First create a Sass file at `assets/css/styles.scss` with the following content:
The empty front matter at the top tells Jekyll it needs to process the file. The The empty front matter at the top tells Jekyll it needs to process the file. The
`@import "main"` tells Sass to look for a file called `main.scss` in the sass `@import "main"` tells Sass to look for a file called `main.scss` in the sass
directory (`_sass/`) by default which you already created directly under the root folder of your website). directory (`_sass/` by default) you already created at the root of your working directory earlier.
At this stage you'll just have a main css file. For larger projects, this is a At this stage you'll just have a main css file. For larger projects, this is a
great way to keep your CSS organized. great way to keep your CSS organized.