From ca30dd04dabe3edc1b30da9df1e6538ad5b5e66e Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 21 Aug 2019 16:54:55 +0200 Subject: [PATCH] fix typos --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 38461fa433..4f55a0efba 100644 --- a/main.go +++ b/main.go @@ -10,7 +10,7 @@ import ( func main() { - revahyperCommand, allCommandFns := NewRevahHyperCommand() + revahyperCommand, allCommandFns := NewRevaHyperCommand() basename := filepath.Base(os.Args[0]) if err := commandFor(basename, revahyperCommand, allCommandFns).Execute(); err != nil { @@ -18,8 +18,8 @@ func main() { } } -// NewRevahHyperCommand is the entry point for reva-hyper -func NewRevahHyperCommand() (*cobra.Command, []func() *cobra.Command) { +// NewRevaHyperCommand is the entry point for reva-hyper +func NewRevaHyperCommand() (*cobra.Command, []func() *cobra.Command) { apiserver := func() *cobra.Command { return revaphoenix.NewRevaPhoenixCommand("phoenix") }