Re-run gofmt
diff --git a/ast.go b/ast.go
index 7abeeaa..33ef5be 100644
--- a/ast.go
+++ b/ast.go
@@ -49,9 +49,9 @@
 
 type RuleAST struct {
 	ASTBase
-	lhs  string
-	rhs  string
-	cmds []string
+	lhs       string
+	rhs       string
+	cmds      []string
 	cmdLineno int
 }
 
@@ -95,10 +95,10 @@
 
 type IfAST struct {
 	ASTBase
-	op string
-	lhs string
-	rhs string // Empty if |op| is ifdef or ifndef.
-	trueStmts []AST
+	op         string
+	lhs        string
+	rhs        string // Empty if |op| is ifdef or ifndef.
+	trueStmts  []AST
 	falseStmts []AST
 }