Skip to content

Commit

Permalink
remove unnecessary qualification at src\html\mod.rs:117
Browse files Browse the repository at this point in the history
  • Loading branch information
cfvescovo committed May 15, 2024
1 parent 948b0e0 commit 28c0069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/html/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ impl Html {
pub fn html(&self) -> String {
let opts = SerializeOpts {
scripting_enabled: false, // It's not clear what this does.
traversal_scope: html5ever::serialize::TraversalScope::IncludeNode,
traversal_scope: serialize::TraversalScope::IncludeNode,
create_missing_parent: false,
};
let mut buf = Vec::new();
Expand Down

0 comments on commit 28c0069

Please sign in to comment.