mirror of
https://github.com/astral-sh/uv.git
synced 2025-12-10 11:59:07 +00:00
Fix a small clippy warning (#16499)
## Summary Missed this with another PR. ## Test Plan NFC. Signed-off-by: William Woodruff <william@astral.sh>
This commit is contained in:
parent
c4f5741e7d
commit
2d54f329e5
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ mod sync;
|
|||
mod vendor;
|
||||
|
||||
static CONTROL_CHARACTERS_RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"\p{C}").unwrap());
|
||||
static REPLACEMENT_CHARACTER: &'static str = "\u{FFFD}";
|
||||
static REPLACEMENT_CHARACTER: &str = "\u{FFFD}";
|
||||
|
||||
/// Validate that a given filename (e.g. reported by a ZIP archive's
|
||||
/// local file entries or central directory entries) is "safe" to use.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue