minidom: Replace std::io calls with use std::io

This commit is contained in:
xmppftw xmppftw 2024-12-19 20:27:33 +01:00 committed by Emmanuel Gil Peyrot
commit 67442bfa0b
3 changed files with 19 additions and 19 deletions

View file

@ -24,7 +24,7 @@ pub enum Error {
/// I/O error from accessing the source or destination.
///
/// Even though the [`rxml`] crate emits its errors through
/// [`std::io::Error`] when using it with [`BufRead`][`std::io::BufRead`],
/// [`io::Error`] when using it with [`BufRead`][`io::BufRead`],
/// any rxml errors will still be reported through the
/// [`XmlError`][`Self::XmlError`] variant.
Io(io::Error),