From ef8afce41c46cbc27722aa5395dcad4a389b96e8 Mon Sep 17 00:00:00 2001 From: Nicole LeGare Date: Mon, 9 Jun 2025 14:05:41 -0700 Subject: [PATCH] Fix tyop --- src/borrowing/examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borrowing/examples.md b/src/borrowing/examples.md index ea72de1e..acc5d4cb 100644 --- a/src/borrowing/examples.md +++ b/src/borrowing/examples.md @@ -44,7 +44,7 @@ fn main() { - In the second case, the aliasing rule prevents mis-compilation: In the C equivalent of this function, the program produces different results when - compiled with optimzations enabled. + compiled with optimizations enabled. - Show students [the C version of this on Godbolt][unoptimized]. By default, with no optimizations enabled it will print `x = 3`. But