Copyedit long help message in commands/server.go
authorAnthony Fok <foka@debian.org>
Sat, 21 Nov 2015 13:31:10 +0000 (06:31 -0700)
committerAnthony Fok <foka@debian.org>
Sat, 21 Nov 2015 13:31:10 +0000 (06:31 -0700)
commands/server.go

index c69c669cd6612cf94a678e194ced0548a5aa5c88..708912fbb20764bfa5cf8e7a81c2b81cf44a66e4 100644 (file)
@@ -45,18 +45,18 @@ var serverCmd = &cobra.Command{
        Use:     "server",
        Aliases: []string{"serve"},
        Short:   "A high performance webserver",
-       Long: `Hugo provides it's own webserver which builds and serves the site.
+       Long: `Hugo provides its own webserver which builds and serves the site.
 While hugo server is high performance, it is a webserver with limited options.
-Many run it in production, but the standard behavior is for people to use it in development
-and use a more full featured server such as Nginx or Caddy.
+Many run it in production, but the standard behavior is for people to use it
+in development and use a more full featured server such as Nginx or Caddy.
 
 'hugo server' will avoid writing the rendered and served content to disk,
 preferring to store it in memory.
 
 By default hugo will also watch your files for any changes you make and
 automatically rebuild the site. It will then live reload any open browser pages
-and push the latest content to them. As most hugo sites are built in a fraction
-of a second you will be able to save and see your changes nearly instantly.`,
+and push the latest content to them. As most Hugo sites are built in a fraction
+of a second, you will be able to save and see your changes nearly instantly.`,
        //Run: server,
 }