summary refs log tree commit diff
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-03 13:49:06 -0500
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2016-03-03 13:49:06 -0500
commitf0e8e335f9697a5636adbb83e2e32f95788c0694 (patch)
treed4deb4e42a0029eea093559cff906e91fa48544d
parente700d690043e37a7c8243e01da931514c35855c6 (diff)
downloadroux-f0e8e335f9697a5636adbb83e2e32f95788c0694.tar.gz
fix typo in abi2.ssa
-rw-r--r--lisc/test/abi2.ssa2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/test/abi2.ssa b/lisc/test/abi2.ssa
index 15b3fa3..b82c80c 100644
--- a/lisc/test/abi2.ssa
+++ b/lisc/test/abi2.ssa
@@ -13,6 +13,6 @@ function s $sum(:fps %p) {
 # typedef struct { float f1; char b; float f2; } fps;
 # extern float sum(fps);
 # int main() { fps x = { 1.23, -1, 2.34 }; return !(sum(x) == 1.23f+2.34f); }
-# /* Note the f above are important
+# /* Note the f suffixes above are important
 #  * otherwise C does double operations. */
 # <<<