Capitalize print statements, add period to `external`
License: MIT Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
Richard Littauer committed
May 11, 2016 at 16:20 UTC
158eddcd7f89562d555e027b71e487893f116e93
1 file changed
+2
-2
core/commands/external.go
+2
-2
@@ -26,8 +26,8 @@ func ExternalBinary() *cmds.Command {
26
if arg == "--help" || arg == "-h" {
27
buf := new(bytes.Buffer)
28
fmt.Fprintf(buf, "%s is an 'external' command.\n", binname)
29
- fmt.Fprintf(buf, "it does not currently appear to be installed.\n")
30
- fmt.Fprintf(buf, "please refer to the ipfs documentation for instructions\n")
29
+ fmt.Fprintf(buf, "It does not currently appear to be installed.\n")
30
+ fmt.Fprintf(buf, "Please refer to the ipfs documentation for instructions.\n")
31
res.SetOutput(buf)
32
return
33
}