diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-04-25 03:23:25 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-04-25 03:23:25 -0700 |
commit | 8a8c42119282ef9bd62866c216cf00a99058ecc9 (patch) | |
tree | b27a0dea1c6521fa103e99e78cb8ac5aa61c91c7 /subx | |
parent | ceb04db3cca5387d4e2aa2e9222434fc8701f2ec (diff) | |
download | mu-8a8c42119282ef9bd62866c216cf00a99058ecc9.tar.gz |
5125
Diffstat (limited to 'subx')
-rw-r--r-- | subx/074print-int-decimal.subx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/subx/074print-int-decimal.subx b/subx/074print-int-decimal.subx index d4617aba..86015a00 100644 --- a/subx/074print-int-decimal.subx +++ b/subx/074print-int-decimal.subx @@ -137,7 +137,7 @@ $print-int32-decimal:abort: # never gets here test-print-int32-decimal: - # check that a single-digit number converts correctly + # - check that a single-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args @@ -167,7 +167,7 @@ test-print-int32-decimal: c3/return test-print-int32-decimal-multiple-digits: - # check that a multi-digit number converts correctly + # - check that a multi-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args @@ -197,7 +197,7 @@ test-print-int32-decimal-multiple-digits: c3/return test-print-int32-decimal-negative: - # check that a negative single-digit number converts correctly + # - check that a negative single-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args @@ -253,7 +253,7 @@ test-print-int32-decimal-negative: c3/return test-print-int32-decimal-negative-multiple-digits: - # check that a multi-digit number converts correctly + # - check that a multi-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args |