Skip to content

Commit

Permalink
fix typo in feature gate, introduced in ddff8e6
Browse files Browse the repository at this point in the history
  • Loading branch information
jcgruenhage committed Nov 17, 2022
1 parent 147a4f6 commit 5fdedbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stream/xml_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ enum PendingCollection {
}

impl<W: Write> XmlWriter<W> {
#[cfg(fearure = "enable_unstable_features_that_may_break_with_minor_version_bumps")]
#[cfg(feature = "enable_unstable_features_that_may_break_with_minor_version_bumps")]
pub fn new(writer: W) -> XmlWriter<W> {
let opts = XmlWriteOptions::default();
XmlWriter::new_with_options(writer, &opts)
Expand Down

0 comments on commit 5fdedbe

Please sign in to comment.