We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7b976c commit fce39daCopy full SHA for fce39da
src/aliasing.md
@@ -88,7 +88,7 @@ These optimizations also tend to prove the soundness of bigger optimizations
88
such as loop vectorization, constant propagation, and dead code elimination.
89
90
In the previous example, we used the fact that `&mut u32` can't be aliased to prove
91
-that writes to `*output` can't possibly affect `*input`. This let us cache `*input`
+that writes to `*output` can't possibly affect `*input`. This lets us cache `*input`
92
in a register, eliminating a read.
93
94
By caching this read, we knew that the write in the `> 10` branch couldn't
0 commit comments