From 24c596c650126116bb5c484666e8c9c34f8da562 Mon Sep 17 00:00:00 2001 From: Andrew Straw Date: Tue, 9 Jun 2015 20:47:51 +0200 Subject: [PATCH] fix example in comments about demangling --- src/libstd/sys/common/backtrace.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/sys/common/backtrace.rs b/src/libstd/sys/common/backtrace.rs index 580d970af0c3d..00932712a07a4 100644 --- a/src/libstd/sys/common/backtrace.rs +++ b/src/libstd/sys/common/backtrace.rs @@ -27,7 +27,7 @@ pub const HEX_WIDTH: usize = 10; // 2. For each element of the path, emit the length plus the element // 3. End the path with "E" // -// For example, "_ZN4testE" => "test" and "_ZN3foo3bar" => "foo::bar". +// For example, "_ZN4testE" => "test" and "_ZN3foo3barE" => "foo::bar". // // We're the ones printing our backtraces, so we can't rely on anything else to // demangle our symbols. It's *much* nicer to look at demangled symbols, so