Day 7 While-loop reversed

In the while-loop on the Day 7 lesson the loop ends after the first CP-command, but the example is meant to show the loop while <100. The 'While' and 'EndWhile' should be exchanged I reckon.

This is now:

    LD     A, 0          ; Initialization
While:
    CP     100          ; Loop termination test
    JR     C, EndWhile
    INC    A            ; Loop body
    JR     While
EndWhile:
Edited by Jonathan van der Steege