aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/comparison.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/comparison.html b/docs/comparison.html
index 8e28f55..9a651c3 100644
--- a/docs/comparison.html
+++ b/docs/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<<