Fix long descriptions of `benchmark` and `serve` commands
authorAnthony Fok <foka@debian.org>
Wed, 24 Dec 2014 11:20:49 +0000 (04:20 -0700)
committerAnthony Fok <foka@debian.org>
Wed, 24 Dec 2014 11:40:48 +0000 (04:40 -0700)
commands/benchmark.go
commands/server.go

index dd3634b1ee958a12c9667ce0e48bc46975c8249b..d67ec9cba110af9fe3452d1f54643f5a6989c07b 100644 (file)
@@ -25,8 +25,8 @@ var benchmarkTimes int
 var benchmark = &cobra.Command{
        Use:   "benchmark",
        Short: "Benchmark hugo by building a site a number of times",
-       Long: `Hugo can build a site many times over and anlyze the
-    running process creating a `,
+       Long: `Hugo can build a site many times over and analyze the
+running process creating a benchmark.`,
        Run: func(cmd *cobra.Command, args []string) {
                InitializeConfig()
                bench(cmd, args)
index 06f8d610a718efd6a9a0c179f288fbde2202315e..fbb051d1676334b5e1ab846aba4aa9245b8037bd 100644 (file)
@@ -44,7 +44,7 @@ var serverCmd = &cobra.Command{
        Short: "Hugo runs its own webserver to render the files",
        Long: `Hugo is able to run its own high performance web server.
 Hugo will render all the files defined in the source directory and
-Serve them up.`,
+serve them up.`,
        //Run: server,
 }