"look what" -> "look at what"

This commit is contained in:
Sei Lisa 2015-06-13 03:07:32 +02:00
parent 3bb3372bf9
commit 07e655bc32

View file

@ -255,7 +255,7 @@ but this will cause an error:
<pre><code> list a; integer b = a[5] = 4;
</code></pre>
<p>To see why, look what that is expanded to:</p>
<p>To see why, look at what that is expanded to:</p>
<pre><code> list a; integer b = a = lazy_list_set(a, 5, (list)4);
</code></pre>