From 28639b4cac79ae4a5c2a7159932b2038b8b7200e Mon Sep 17 00:00:00 2001
From: Marc Di Luzio <marc.diluzio@gmail.com>
Date: Sat, 4 Jul 2020 23:11:22 +0100
Subject: [PATCH] Fix up a comment and the help text

---
 cmd/rove-server/internal/routes.go | 2 +-
 cmd/rove/main.go                   | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/cmd/rove-server/internal/routes.go b/cmd/rove-server/internal/routes.go
index 76485c4..264ede3 100644
--- a/cmd/rove-server/internal/routes.go
+++ b/cmd/rove-server/internal/routes.go
@@ -9,7 +9,7 @@ import (
 	"github.com/mdiluz/rove/pkg/version"
 )
 
-// Status returns the status of the current server to a gRPC request
+// ServerStatus returns the status of the current server to a gRPC request
 func (s *Server) ServerStatus(context.Context, *rove.ServerStatusRequest) (*rove.ServerStatusResponse, error) {
 	response := &rove.ServerStatusResponse{
 		Ready:   true,
diff --git a/cmd/rove/main.go b/cmd/rove/main.go
index 4cb9075..1498c74 100644
--- a/cmd/rove/main.go
+++ b/cmd/rove/main.go
@@ -39,6 +39,7 @@ func printUsage() {
 	fmt.Fprintln(os.Stderr, "\tmove BEARING               moves the rover in the chosen direction")
 	fmt.Fprintln(os.Stderr, "\tstash                      stores the object at the rover location in the inventory")
 	fmt.Fprintln(os.Stderr, "\trepair                     uses an inventory object to repair the rover")
+	fmt.Fprintln(os.Stderr, "\trecharge                   wait a tick to recharge the rover")
 	fmt.Fprintln(os.Stderr, "\nEnvironment")
 	fmt.Fprintln(os.Stderr, "\tROVE_USER_DATA             path to user data, defaults to "+defaultDataPath)
 }