about summary refs log tree commit diff stats
path: root/linux/412print-float-decimal.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-03-08 23:49:07 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-03-08 23:50:35 -0800
commitcec5ef31b3e383b7bdffe049a8c502a563f6b491 (patch)
tree9f6b410cc16991a709dc59258ae29dacd2feb98b /linux/412print-float-decimal.mu
parent6508ab51ccd6a41d6d1da3502359e80611d8bda3 (diff)
downloadmu-cec5ef31b3e383b7bdffe049a8c502a563f6b491.tar.gz
update vocabulary documentation
Top-level and linux/ now have separate vocabulary.md files.
Diffstat (limited to 'linux/412print-float-decimal.mu')
-rw-r--r--linux/412print-float-decimal.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/412print-float-decimal.mu b/linux/412print-float-decimal.mu
index a9c7fd0e..c852c932 100644
--- a/linux/412print-float-decimal.mu
+++ b/linux/412print-float-decimal.mu
@@ -620,7 +620,7 @@ fn check-buffer-contains _buf: (addr array byte), _contents: (addr array byte),
   var buf/esi: (addr array byte) <- copy _buf
   var contents/edi: (addr array byte) <- copy _contents
   var a/eax: boolean <- string-starts-with? buf, contents
-  check-true a, msg
+  check a, msg
   var len/ecx: int <- length contents
   var len2/eax: int <- length buf
   compare len, len2