diff --git a/challenges/03-front-end-libraries/sass.json b/challenges/03-front-end-libraries/sass.json
index 58c2672d61..bb1cc57bc3 100644
--- a/challenges/03-front-end-libraries/sass.json
+++ b/challenges/03-front-end-libraries/sass.json
@@ -92,7 +92,7 @@
"description": [
"Sass allows nesting
of CSS rules, which is a useful way of organizing a style sheet.",
"Normally, each element is targeted on a different line to style it, like so:",
- "
nav {", + "
background-color: red;
}
nav ul {
list-style: none;
}
li {
display: inline-block;
}
nav {", "For a large project, the CSS file will have many lines and rules. This is where
background-color: red;
}
nav ul {
list-style: none;
}
nav ul li {
display: inline-block;
}
nesting
can help organize your code by placing child style rules within the respective parent elements:",
"nav {", "
background-color: red;
ul {
list-style: none;
li {
display: inline-block;
}
}
}