Skip to content

Commit

Permalink
remove mut
Browse files Browse the repository at this point in the history
Signed-off-by: Taym <[email protected]>
  • Loading branch information
Taym95 committed Jun 11, 2024
1 parent 8c2bd32 commit 34567e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rcdom/tests/html-serializer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl Serialize for Tokens {

fn tokenize_and_serialize(input: StrTendril) -> StrTendril {
let mut input = {
let mut q = ::html5ever::tokenizer::BufferQueue::default();
let q = ::html5ever::tokenizer::BufferQueue::default();
q.push_front(input);
q
};
Expand Down

0 comments on commit 34567e9

Please sign in to comment.