summaryrefslogtreecommitdiffstats
path: root/commands/server.go
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2015-11-21 06:31:10 -0700
committerAnthony Fok <foka@debian.org>2015-11-21 06:31:10 -0700
commit5c7234015d15ca860f3c40dac112d1c3b38346f4 (patch)
tree57400deb9a319626e6b1e491e0b01c37b72b806c /commands/server.go
parent3abb2675c5afa3c31119dcb09a9143c87b85eda6 (diff)
Copyedit long help message in commands/server.go
Diffstat (limited to 'commands/server.go')
-rw-r--r--commands/server.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/commands/server.go b/commands/server.go
index c69c669cd..708912fbb 100644
--- a/commands/server.go
+++ b/commands/server.go
@@ -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,
}