From 158eddcd7f89562d555e027b71e487893f116e93 Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Wed, 11 May 2016 16:20:11 -0400 Subject: [PATCH] Capitalize print statements, add period to `external` License: MIT Signed-off-by: Richard Littauer --- core/commands/external.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/commands/external.go b/core/commands/external.go index c49fc13c906..d4dc56d5443 100644 --- a/core/commands/external.go +++ b/core/commands/external.go @@ -26,8 +26,8 @@ func ExternalBinary() *cmds.Command { if arg == "--help" || arg == "-h" { buf := new(bytes.Buffer) fmt.Fprintf(buf, "%s is an 'external' command.\n", binname) - fmt.Fprintf(buf, "it does not currently appear to be installed.\n") - fmt.Fprintf(buf, "please refer to the ipfs documentation for instructions\n") + fmt.Fprintf(buf, "It does not currently appear to be installed.\n") + fmt.Fprintf(buf, "Please refer to the ipfs documentation for instructions.\n") res.SetOutput(buf) return }