Update rxml to 0.11.0

This commit is contained in:
Jonas Schäfer 2024-05-23 18:12:09 +02:00
commit 84de007640
6 changed files with 19 additions and 18 deletions

View file

@ -162,7 +162,7 @@ impl Node {
match *self {
Node::Element(ref elmt) => elmt.write_to_inner(writer)?,
Node::Text(ref s) => {
writer.write(Item::Text((&**s).try_into()?))?;
writer.write(Item::Text((&**s).into()))?;
}
}