From 2278347b4c43158e15aaad918b701bfd25eee488 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Fri, 10 Apr 2020 12:11:37 -0600 Subject: [PATCH] Fix typo --- cmd/root.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 7a92700..b859b45 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -23,7 +23,7 @@ var debug = false var root = &cobra.Command{ Use: "wings", - Short: "The wings of the pterodactly game management panel", + Short: "The wings of the pterodactyl game management panel", Long: ``, Run: rootCmdRun, } @@ -71,7 +71,7 @@ func rootCmdRun(cmd *cobra.Command, args []string) { zap.S().Infow("configured system user", zap.String("username", su.Username), zap.String("uid", su.Uid), zap.String("gid", su.Gid)) } - zap.S().Infow("beginnning file permission setting on server data directories") + zap.S().Infow("beginning file permission setting on server data directories") if err := c.EnsureFilePermissions(); err != nil { zap.S().Errorw("failed to properly chown data directories", zap.Error(err)) } else {