diff --git a/rust/utils/backtrace-oneline/src/lib.rs b/rust/utils/backtrace-oneline/src/lib.rs index 0c69ee374..61261f11d 100644 --- a/rust/utils/backtrace-oneline/src/lib.rs +++ b/rust/utils/backtrace-oneline/src/lib.rs @@ -118,7 +118,7 @@ impl BacktraceFrameFmt<'_, '_, '_> { symbol.name(), // TODO: this isn't great that we don't end up printing anything // with non-utf8 filenames. Thankfully almost everything is utf8 so - // this shouldn't be too too bad. + // this shouldn't be too bad. symbol .filename() .and_then(|p| Some(BytesOrWideString::Bytes(p.to_str()?.as_bytes()))),