Skip to content

Commit ed361ca

Browse files
authored
fix: typo in app size guide (#3517)
1 parent 84c2c3c commit ed361ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/guides/building/app-size.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Cargo exposes several options that determine how the compiler generates your bin
165165
[profile.release]
166166
panic = "abort" # Strip expensive panic clean-up logic
167167
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
168-
lto = true # Enables link to optimizations
168+
lto = true # Enables link time optimizations
169169
opt-level = "s" # Optimize for binary size
170170
strip = true # Remove debug symbols
171171
```

0 commit comments

Comments
 (0)