Skip to content

Commit 24c596c

Browse files
committed
fix example in comments about demangling
1 parent 7b0f2af commit 24c596c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sys/common/backtrace.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub const HEX_WIDTH: usize = 10;
2727
// 2. For each element of the path, emit the length plus the element
2828
// 3. End the path with "E"
2929
//
30-
// For example, "_ZN4testE" => "test" and "_ZN3foo3bar" => "foo::bar".
30+
// For example, "_ZN4testE" => "test" and "_ZN3foo3barE" => "foo::bar".
3131
//
3232
// We're the ones printing our backtraces, so we can't rely on anything else to
3333
// demangle our symbols. It's *much* nicer to look at demangled symbols, so

0 commit comments

Comments
 (0)