aboutsummaryrefslogtreecommitdiffstats
path: root/progs/bench
diff options
context:
space:
mode:
Diffstat (limited to 'progs/bench')
-rw-r--r--progs/bench/fib.sy2
-rw-r--r--progs/bench/fib_iter.sy4
2 files changed, 3 insertions, 3 deletions
diff --git a/progs/bench/fib.sy b/progs/bench/fib.sy
index bd1aaa4..de68f5c 100644
--- a/progs/bench/fib.sy
+++ b/progs/bench/fib.sy
@@ -1,4 +1,4 @@
-// The worst implementation of fibonacci calculations
+// The worst implementation of Fibonacci calculations
// possible. FYI, it can be done in constant time.
fib :: fn a:int -> int {
if a < 2 {
diff --git a/progs/bench/fib_iter.sy b/progs/bench/fib_iter.sy
index 0e188e8..c51469a 100644
--- a/progs/bench/fib_iter.sy
+++ b/progs/bench/fib_iter.sy
@@ -1,5 +1,5 @@
-// A fibonacci implementation that is a little
-// less awefull. But we run it 1000 times instead.
+// A Fibonacci implementation that is a little
+// less awful. But we run it 1000 times instead.
j := 0
for , j < 1000, j = j + 1 {
a := 0