remove implied end of slice

This commit is contained in:
Marijn Schouten
2025-01-22 16:46:40 +01:00
committed by GitHub
parent b2728d5426
commit 53578bdd19

View File

@@ -545,7 +545,7 @@ impl<'a> Parser<'a> {
}
}
}
&self.input[start..self.input.len()]
&self.input[start..]
}
/// Parses an `Argument` structure, or what's contained within braces inside the format string.