Skip to content

Commit

Permalink
cargo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
keithamus committed Nov 22, 2024
1 parent 0e765a3 commit 9041046
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions crates/hdx_ast/src/css/values/display/types.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use hdx_atom::{atom, Atomizable};
use hdx_parser::{diagnostics, Parse, Parser, Peek, Result as ParserResult, T};
use hdx_writer::{write_css, CssWriter, Result as WriterResult, WriteCss};
use hdx_atom::Atomizable;
use hdx_parser::{Parse, Peek};
use hdx_writer::{CssWriter, WriteCss};

pub(crate) use crate::css::units::*;
use crate::macros::keyword_typedef;
Expand Down
2 changes: 1 addition & 1 deletion crates/hdx_parser/src/traits/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ pub trait QualifiedRule<'a>: Sized + Parse<'a> {
}
}

let mut prelude = Self::parse_prelude(p);
let prelude = Self::parse_prelude(p);

// Otherwise, consume a block from input, and let child rules be the result.
// If the first item of child rules is a list of declarations,
Expand Down

0 comments on commit 9041046

Please sign in to comment.