fix(curriculum): more typos for rwd (#45932)

* wrong word in step 12 cat cafe menu project

* wrong word step 27 cafe menu
pull/45943/head
Ilenia 2022-05-13 05:37:49 +02:00 committed by GitHub
parent a1df6056b0
commit e279d9a64d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ const hasSelector = new __helpers.CSSHelp(document).getStyle('h1');
assert(hasSelector);
```
Your `text-align` property should set a value of `center`.
Your `text-align` property should have a value of `center`.
```js
const hasTextAlign = new __helpers.CSSHelp(document).getCSSRules().some(x => x.style['text-align'] === 'center');

View File

@ -19,7 +19,7 @@ Change the existing `div` selector into a class selector by replacing `div` with
# --hints--
You should have a `.menu` type selector.
You should have a `.menu` class selector.
```js
const hasMenu = new __helpers.CSSHelp(document).getStyle('.menu');