Skip to content

added important note on not to modify html file #83

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions exercises/07-Very-Specific-Rules/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ En este ejercicio, puedes agregar tu código solo arriba del **READ ONLY BLOCK**


![Example Image](../../.learn/assets/07-1.png?raw=true)
>Importante: **NO** debes modificar el archivo index.html

## :bulb: Pista:

Expand Down
1 change: 1 addition & 0 deletions exercises/07-Very-Specific-Rules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ In this exercise, you can add your code only above the **READ ONLY BLOCK** of th


![Example Image](../../.learn/assets/07-1.png?raw=true)
>Important: You should **NOT** modify the index.html file

## :bulb: Hint:

Expand Down
2 changes: 1 addition & 1 deletion exercises/07-Very-Specific-Rules/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe("All the styles should be applied", ()=>{
expect(reg.test(color)).toBeTruthy();
});

test("The ul second element background should be green", ()=>{
test("The ol second element background should be green", ()=>{
document.querySelector(
"head"
).innerHTML = `<style>${css.toString()}</style>`;
Expand Down