aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--handlers.ha2
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers.ha b/handlers.ha
index cd6a012..e73dca0 100644
--- a/handlers.ha
+++ b/handlers.ha
@@ -32,7 +32,7 @@ fn reverse(l: []str) void = {
l[s] = l[e];
l[e] = z;
s += 1;
- e += 1;
+ e -= 1;
};
};