Skip to content

Commit

Permalink
ci: fix check deps error (#3851)
Browse files Browse the repository at this point in the history
  • Loading branch information
Conaclos authored Sep 11, 2024
1 parent e135108 commit 83e5cef
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/biome_formatter/src/comments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ impl<L: Language> Comments<L> {
pub fn leading_dangling_trailing_comments<'a>(
&'a self,
node: &'a SyntaxNode<L>,
) -> impl Iterator<Item = &SourceComment<L>> + 'a {
) -> impl Iterator<Item = &'a SourceComment<L>> + 'a {
self.data.comments.parts(&node.key())
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ macro_rules! declare_visitor {
impl<'a> StatementStack<'a> {
/// Split the visitor state at the topmost function, returning the
/// corresponding function visitor and the rest of the stack above it
fn new(visitor: &'a mut $name) -> Option<(&mut FunctionVisitor, Self)> {
fn new(visitor: &'a mut $name) -> Option<(&'a mut FunctionVisitor, Self)> {
let (index, builder) = visitor.function.last_mut()?;

Some((builder, Self {
Expand Down
1 change: 0 additions & 1 deletion crates/biome_ungrammar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
//! for details.

#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
#![deny(rust_2018_idioms)]

mod error;
Expand Down

0 comments on commit 83e5cef

Please sign in to comment.