summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorAndrew Straw <strawman@astraw.com>2015-06-09 20:47:51 +0200
committerAndrew Straw <strawman@astraw.com>2015-06-09 20:47:51 +0200
commit24c596c650126116bb5c484666e8c9c34f8da562 (patch)
tree972c04a732c42636eb2af064aa58a3afb673a89a /src/libstd/sys
parent7b0f2af27f18b6c81fe6a2faab0ba96e0da3bba5 (diff)
downloadrust-24c596c650126116bb5c484666e8c9c34f8da562.tar.gz
rust-24c596c650126116bb5c484666e8c9c34f8da562.zip
fix example in comments about demangling
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/common/backtrace.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/common/backtrace.rs b/src/libstd/sys/common/backtrace.rs
index 580d970af0c..00932712a07 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