Add comment in filter_whitespace_nodes method
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
0aa24bdc32
commit
84784e2adb
1 changed files with 1 additions and 0 deletions
|
@ -92,6 +92,7 @@ impl PartialEq<Node> for ScanNode {
|
|||
fn filter_whitespace_nodes(nodes: Vec<Node>) -> Vec<Node> {
|
||||
// Tags with mixed significant text and children tags aren't valid in XMPP, so we know we
|
||||
// can remove these before comparing.
|
||||
// XXX: ^^^^^ This isn't true.
|
||||
let filter_nodes = |(prev_type, mut acc): (Option<NodeType>, Vec<Node>), node| {
|
||||
let type_ = match node {
|
||||
Node::Text(_) => NodeType::Text,
|
||||
|
|
Loading…
Reference in a new issue