fix(curriculum): grammatical errors (#49537)

* Minor grammatical change 

```diff
# --description--
-      Create an .small-text selector and set the font-size to 0.85rem, which would calculate to be roughly 13.6px (remember that you set your html to have a font-size of 16px).
+      Create a .small-text selector and set the font-size to 0.85rem, which would calculate to roughly 13.6px (remember that you set your html to have a font-size of 16px).
```

* Add backticks for formatting purposes

Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com>

---------

Co-authored-by: Krzysztof G. <60067306+gikf@users.noreply.github.com>
This commit is contained in:
Steve Beecheno
2023-02-27 16:50:35 +00:00
committed by GitHub
parent 123b2d54da
commit 564a4d2cab

View File

@@ -9,7 +9,7 @@ dashedName: step-31
The `rem` unit stands for `root em`, and is relative to the font size of the `html` element.
Create an `.small-text` selector and set the `font-size` to `0.85rem`, which would calculate to be roughly `13.6px` (remember that you set your `html` to have a `font-size` of `16px`).
Create a `.small-text` selector and set the `font-size` to `0.85rem`, which would calculate to roughly `13.6px` (remember that you set your `html` to have a `font-size` of `16px`).
# --hints--