Skip to content

Commit ccafb26

Browse files
committed
readme: fix example by adding missing )
1 parent eaa41cd commit ccafb26

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ func main() {
2828
// Comparing AST strings for equallity (note different spacing):
2929
x := strparse.Expr(`1 + f(v[0].X)`)
3030
y := strparse.Expr(` 1+f( v[0].X ) `)
31-
fmt.Println(astequal.Expr(x, y) // => true
31+
fmt.Println(astequal.Expr(x, y)) // => true
3232
}
33+
3334
```

0 commit comments

Comments
 (0)