Skip to content

Commit 7ce3a41

Browse files
docs: Add missing + in diff code block
The closing bracket for the `if` statement is also nearly added but the leading `+` to indicate that was forgotten.
1 parent 51efaf2 commit 7ce3a41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guide/src/for_developers/backends.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ like this:
287287
+ if cfg.deny_odds && num_words % 2 == 1 {
288288
+ eprintln!("{} has an odd number of words!", ch.name);
289289
+ process::exit(1);
290-
}
290+
+ }
291291
}
292292
}
293293
}

0 commit comments

Comments
 (0)