Skip to content

Commit 7ec4d14

Browse files
authored
fix wrapping
1 parent 70bf08b commit 7ec4d14

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libstd/panicking.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,8 @@ impl<'a> PanicInfo<'a> {
221221
///
222222
/// panic::set_hook(Box::new(|panic_info| {
223223
/// if let Some(location) = panic_info.location() {
224-
/// println!("panic occurred in file '{}' at line {}", location.file(), location.line());
224+
/// println!("panic occurred in file '{}' at line {}",
225+
/// location.file(), location.line());
225226
/// } else {
226227
/// println!("panic occurred but can't get location information...");
227228
/// }

0 commit comments

Comments
 (0)