Copyedit long help message in commands/server.go

This commit is contained in:
Anthony Fok 2015-11-21 06:31:10 -07:00
parent 3abb2675c5
commit 5c7234015d

View 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,
}