diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-06-09 17:24:44 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-06-09 17:24:44 -0400 |
| commit | 8a55e5399f474c3d264bf4d2c617ee19f66da4e7 (patch) | |
| tree | 406b9a5babeab55d5d5241803fe636131285ed46 | |
| parent | 91a9f82596af47cfd2ce8139c3afd38ecd7db22f (diff) | |
| parent | 24c596c650126116bb5c484666e8c9c34f8da562 (diff) | |
Rollup merge of #26132 - astraw:fix-demangle-comment, r=alexcrichton
Hi, I think the second example fails rule 3 described immediately above. This PR fixes that.
| -rw-r--r-- | src/libstd/sys/common/backtrace.rs | 2 |
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 |
