Add missing new lines

This commit is contained in:
David Dworken
2022-09-21 19:13:53 -07:00
parent 3e89accf97
commit 486feb3fea
2 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ func main() {
numImported, err := lib.ImportHistory(ctx)
lib.CheckFatalError(err)
if numImported > 0 {
fmt.Printf("Imported %v history entries from your existing shell history", numImported)
fmt.Printf("Imported %v history entries from your existing shell history\n", numImported)
}
}
case "import":
@ -68,7 +68,7 @@ func main() {
numImported, err := lib.ImportHistory(ctx)
lib.CheckFatalError(err)
if numImported > 0 {
fmt.Printf("Imported %v history entries from your existing shell history", numImported)
fmt.Printf("Imported %v history entries from your existing shell history\n", numImported)
}
case "enable":
ctx := hctx.MakeContext()