Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/biome_rowan/src/ast/batch.rs
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ where
L: Language,
{
/// It starts a [BatchMutation]
#[must_use = "This method consumes the node and return the BatchMutation api that returns the new SynytaxNode on commit"]
#[must_use = "This method consumes the node and return the BatchMutation api that returns the new SyntaxNode on commit"]
fn begin(self) -> BatchMutation<L>;
}

@@ -25,7 +25,7 @@ where
L: Language,
T: AstNode<Language = L>,
{
#[must_use = "This method consumes the node and return the BatchMutation api that returns the new SynytaxNode on commit"]
#[must_use = "This method consumes the node and return the BatchMutation api that returns the new SyntaxNode on commit"]
fn begin(self) -> BatchMutation<L> {
BatchMutation::new(self.into_syntax())
}

0 comments on commit a3e81bf

Please sign in to comment.