Skip to content

Commit

Permalink
fix noisy check warning
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Apr 4, 2020
1 parent 30aa0b7 commit 187a584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion router/src/url.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fn set_bit(array: &mut [u8], ch: u8) {
}

thread_local! {
static DEFAULT_QUOTER: Quoter = { Quoter::new(b"@:", b"/+") };
static DEFAULT_QUOTER: Quoter = Quoter::new(b"@:", b"/+");
}

#[derive(Default, Clone, Debug)]
Expand Down

0 comments on commit 187a584

Please sign in to comment.