diff --git a/index.html b/index.html index 0ff6339..ba10f43 100644 --- a/index.html +++ b/index.html @@ -255,7 +255,7 @@ but this will cause an error:
list a; integer b = a[5] = 4;
-To see why, look what that is expanded to:
+To see why, look at what that is expanded to:
list a; integer b = a = lazy_list_set(a, 5, (list)4);