about summary refs log tree commit diff stats
path: root/apps/ex11.subx
diff options
context:
space:
mode:
Diffstat (limited to 'apps/ex11.subx')
-rw-r--r--apps/ex11.subx6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/ex11.subx b/apps/ex11.subx
index fb63b25c..7e21b643 100644
--- a/apps/ex11.subx
+++ b/apps/ex11.subx
@@ -27,7 +27,7 @@ Entry:  # run all tests
 
 # compare a null-terminated ascii string with a more idiomatic length-prefixed byte array
 # reason for the name: the only place we should have null-terminated ascii strings is from commandline args
-kernel-string-equal?:  # s : null-terminated ascii string, benchmark : length-prefixed ascii string -> eax : boolean
+kernel-string-equal?:  # s: null-terminated ascii string, benchmark: length-prefixed ascii string -> eax: boolean
     # pseudocode:
     #   n = benchmark->length
     #   s1 = s
@@ -258,7 +258,7 @@ test-compare-kernel-string-with-longer-array:
 # - helpers
 
 # print msg to stderr if a != b, otherwise print "."
-check-ints-equal:  # (a : int, b : int, msg : (addr array byte)) -> boolean
+check-ints-equal:  # (a: int, b: int, msg: (addr array byte)) -> boolean
     # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp
@@ -307,7 +307,7 @@ $check-ints-equal:end:
     5d/pop-to-ebp
     c3/return
 
-write-stderr:  # s : (addr array byte) -> <void>
+write-stderr:  # s: (addr array byte) -> <void>
     # . prologue
     55/push-ebp
     89/copy                         3/mod/direct    5/rm32/ebp    .           .             .           4/r32/esp   .               .                 # copy esp to ebp