We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45aa13b commit aa3186aCopy full SHA for aa3186a
src/symbolize/gimli/parse_running_mmaps_unix.rs
@@ -87,7 +87,7 @@ impl FromStr for MapsEntry {
87
// e.g.: "35b1a21000-35b1a22000 rw-p 00000000 00:00 0"
88
//
89
// Note that paths may contain spaces, so we can't use `str::split` for parsing (until
90
- // Split::remainder is stabalized #77998).
+ // Split::remainder is stabilized #77998).
91
fn from_str(s: &str) -> Result<Self, Self::Err> {
92
let (range_str, s) = s.trim_start().split_once(' ').unwrap_or((s, ""));
93
if range_str.is_empty() {
0 commit comments