Skip to content
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

Add more specific wording for instructions #14

Merged
merged 3 commits into from
May 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 6 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,13 @@ <h2>Troubleshooting</h2>
<h3>General Guidance</h3>
<ul>
<li>Your JS code runs from top to bottom</li>
<li>If you have a problem with Exercise #2, fix it before moving on to Exercise #3.</li>
<li>Any error in your JS code keeps the following code from running.</li>
<li>Solve the exercises one at a time and in order.</li>
<li>Fix any syntax errors before moving forward with the exercises</li>
<li>Any synax error in your code may halt the execution of all of your code.</li>
<li>Double check your spelling. Capitalization matters in programming.</li>
<li>If you're sure you spelled something, check it anyways.</li>
<li>Solve one thing at a time and avoid jumping around.</li>
<li>Each exercise must pass its tests in order for you to see the next exercise.</li>
<li>If you have an incorrect answer or syntax error on an exercise, fix it before moving forward.</li>
</ul>
</article>
<hr>
Expand Down