Skip to content

Commit aa3186a

Browse files
Update src/symbolize/gimli/parse_running_mmaps_unix.rs
Co-authored-by: Jubilee <46493976+workingjubilee@users.noreply.github.com>
1 parent 45aa13b commit aa3186a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/symbolize/gimli/parse_running_mmaps_unix.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ impl FromStr for MapsEntry {
8787
// e.g.: "35b1a21000-35b1a22000 rw-p 00000000 00:00 0"
8888
//
8989
// Note that paths may contain spaces, so we can't use `str::split` for parsing (until
90-
// Split::remainder is stabalized #77998).
90+
// Split::remainder is stabilized #77998).
9191
fn from_str(s: &str) -> Result<Self, Self::Err> {
9292
let (range_str, s) = s.trim_start().split_once(' ').unwrap_or((s, ""));
9393
if range_str.is_empty() {

0 commit comments

Comments
 (0)