Skip to content

Commit 52d4157

Browse files
committed
Add comment
1 parent c5bcfa5 commit 52d4157

File tree

1 file changed

+1
-1
lines changed
  • optd-core/src/dsl/parser

1 file changed

+1
-1
lines changed

optd-core/src/dsl/parser/ast.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ pub enum Expr {
9696
Var(String), // Variable reference
9797
Literal(Literal), // Literal values
9898
Fail(String), // Failure with message
99-
Closure(Vec<String>, Box<Expr>), // Anonymous functions
99+
Closure(Vec<String>, Box<Expr>), // Anonymous functions v = (x, y) => x + y;
100100
}
101101

102102
/// A case in a match expression

0 commit comments

Comments
 (0)