Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
MaryamArab committed Feb 16, 2018
2 parents b103111 + 8de94f1 commit a051121
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Roboto/debug.roboto
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ STRATEGY debug()
IF the faulty output is graphical
# To find these lines, try searching for keywords related to graphical output, like 'draw' or 'fill'
SET outputLines TO the line numbers of calls to graphical output functions that could have produced the faulty output
IF the faulty output is not in the console or in graphics
# Are you sure its neither? Most computer output is one or the other.
RETURN nothing
# Now that you have some lines that could have produced the faulty output, you're going to check each
# line, see if it executed, and then find the cause of it executing. If you're lucky, you only have one
# output line to check.
Expand Down Expand Up @@ -56,4 +59,4 @@ STRATEGY localizeWrongValue(wrongValue)
IF 'value' isn't nothing
RETURN localizeWrongValue('badValue')
# If you made it to this line, then you didn't find the cause of the wrong value. Is it possible you made a mistake above? If so, check your work and start over.
RETURN nothing
RETURN nothing
1 change: 0 additions & 1 deletion assessment.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ The correct answer is:
banner
Good night
Good night Bob!
Good night
```

# DOM manipulation
Expand Down

0 comments on commit a051121

Please sign in to comment.