Skip to content

Commit ac26a8c

Browse files
committed
fmt
1 parent 5dc9a23 commit ac26a8c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

compiler/plc_ast/src/visitor.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ macro_rules! visit_nodes {
3737
/// use plc_ast::ast::AstNode;
3838
/// use plc_ast::visitor::Walker;
3939
/// use plc_ast::visitor::AstVisitor;
40-
///
40+
///
4141
/// struct MyAssignment {
4242
/// left: AstNode,
4343
/// right: AstNode,
4444
/// }
45-
///
45+
///
4646
/// impl Walker for MyAssignment {
4747
/// fn walk<V>(&self, visitor: &mut V)
4848
/// where
@@ -60,8 +60,6 @@ pub trait Walker {
6060
V: AstVisitor;
6161
}
6262

63-
64-
6563
/// The `AstVisitor` trait provides a set of methods for visiting different types of AST nodes.
6664
/// Implementors can individually override the methods they are interested in. When overriding a method,
6765
/// make sure to call `walk` on the visited statement to visit its children. DO NOT call walk on

0 commit comments

Comments
 (0)