1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-15 10:34:18 +02:00

Fix typo: "appenix" → "appendix" (#2815)

If I'm not mistaken...
This commit is contained in:
Enes Aydın
2025-07-13 15:54:05 +03:00
committed by GitHub
parent 0f41f32be1
commit a55ce1d24f

View File

@ -25,7 +25,7 @@ fn main() {
let suffix = "-itis";
let add_suffix = |x| format!("{x}{suffix}");
apply_and_log(&add_suffix, "add_suffix", "senior");
apply_and_log(&add_suffix, "add_suffix", "appenix");
apply_and_log(&add_suffix, "add_suffix", "appendix");
let mut v = Vec::new();
let mut accumulate = |x| {