summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Germain <bnt.germain@gmail.com>2023-07-28 11:08:23 +0200
committerGitHub <noreply@github.com>2023-07-28 11:08:23 +0200
commit8b1ba14a1acd14d9723e8436920840c465e682ca (patch)
tree9ed81e2b7116165ab566cd5f65770c3cbe62adec
parent92cc9c500f195c9f6b31aa1e62cf7fd63e886dba (diff)
downloadlanes-8b1ba14a1acd14d9723e8436920840c465e682ca.tar.gz
lanes-8b1ba14a1acd14d9723e8436920840c465e682ca.tar.bz2
lanes-8b1ba14a1acd14d9723e8436920840c465e682ca.zip
Update comparison.html
-rw-r--r--comparison.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/comparison.html b/comparison.html
index 8e28f55..9a651c3 100644
--- a/comparison.html
+++ b/comparison.html
@@ -64,8 +64,8 @@ Sample:
64 end 64 end
65 65
66 local h1= lanes.gen("base", calculate)(1,2,3) 66 local h1= lanes.gen("base", calculate)(1,2,3)
67 local h2= lanes.new("base", calculate)(10,20,30) 67 local h2= lanes.gen("base", calculate)(10,20,30)
68 local h3= lanes.new("base", calculate)(100,200,300) 68 local h3= lanes.gen("base", calculate)(100,200,300)
69 69
70 print( h1[1], h2[1], h3[1] ) -- pends for the results, or propagates error 70 print( h1[1], h2[1], h3[1] ) -- pends for the results, or propagates error
71<< 71<<