Skip to content

Commit c20ca1e

Browse files
committed
Fix typo in comments.
1 parent 2a7d479 commit c20ca1e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

code/lesson15/calculator-division.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ _start:
2020
mov eax, msg1 ; move our message string into eax
2121
call sprint ; call our string print function
2222
mov eax, edx ; move our remainder into eax
23-
call iprintLF ; call out integer printing with linefeed function
23+
call iprintLF ; call our integer printing with linefeed function
2424

2525
call quit

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1443,7 +1443,7 @@ <h4>Calculator - division</h4>
14431443
mov eax, msg1 ; move our message string into eax
14441444
call sprint ; call our string print function
14451445
mov eax, edx ; move our remainder into eax
1446-
call iprintLF ; call out integer printing with linefeed function
1446+
call iprintLF ; call our integer printing with linefeed function
14471447

14481448
call quit
14491449
</pre>

0 commit comments

Comments
 (0)