Skip to content

Commit 70bf08b

Browse files
authored
correct line length
1 parent a21e056 commit 70bf08b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/panicking.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ 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 {}", location.file(), location.line());
225225
/// } else {
226226
/// println!("panic occurred but can't get location information...");
227227
/// }

0 commit comments

Comments
 (0)