fix: typo in app size guide (#3517)

This commit is contained in:
Evan Porter
2025-09-21 00:19:39 -07:00
committed by GitHub
parent 84c2c3cecc
commit ed361ca392

View File

@@ -165,7 +165,7 @@ Cargo exposes several options that determine how the compiler generates your bin
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
lto = true # Enables link time optimizations
opt-level = "s" # Optimize for binary size
strip = true # Remove debug symbols
```