From e3433e6afb4511981b0c84002e915038d096bc7f Mon Sep 17 00:00:00 2001 From: Anthony Fok Date: Wed, 24 Dec 2014 04:20:49 -0700 Subject: [PATCH] Fix long descriptions of `benchmark` and `serve` commands --- commands/benchmark.go | 4 ++-- commands/server.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/benchmark.go b/commands/benchmark.go index dd3634b1..d67ec9cb 100644 --- a/commands/benchmark.go +++ b/commands/benchmark.go @@ -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) diff --git a/commands/server.go b/commands/server.go index 06f8d610..fbb051d1 100644 --- a/commands/server.go +++ b/commands/server.go @@ -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, } -- 2.30.2