From 192360dd6ad9279de852d2f9313d2011177df89f Mon Sep 17 00:00:00 2001 From: KenHV Date: Sun, 15 Sep 2024 18:57:44 +0530 Subject: [PATCH] docs: Fix incorrect parentheses (#9629) Merge pull request 9629 --- docs/_docs/step-by-step/07-assets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/step-by-step/07-assets.md b/docs/_docs/step-by-step/07-assets.md index 93b6750d..da5d8a7c 100644 --- a/docs/_docs/step-by-step/07-assets.md +++ b/docs/_docs/step-by-step/07-assets.md @@ -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 `@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 great way to keep your CSS organized.