aboutsummaryrefslogtreecommitdiffstats
path: root/ast.go
diff options
context:
space:
mode:
Diffstat (limited to 'ast.go')
-rw-r--r--ast.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/ast.go b/ast.go
index 41ab3df..8ad222a 100644
--- a/ast.go
+++ b/ast.go
@@ -64,14 +64,14 @@ func ProcessFileAST(filePath string, from string, to string) {
}
ioutil.WriteFile(filePath, outputBuffer.Bytes(), os.ModePerm)
- fmt.Println(yellow+
+ fmt.Print(yellow+
"File",
filePath,
"saved",
- reset, "\n\n")
+ reset, "\n\n\n")
} else {
- fmt.Println(yellow+
+ fmt.Print(yellow+
"No changes to write on this file.",
- reset, "\n\n")
+ reset, "\n\n\n")
}
}