From 6016c4aac139ab1481a2af7e06e1a875bed34f48 Mon Sep 17 00:00:00 2001 From: Neil Macneale IV Date: Sun, 12 Jan 2025 16:36:40 -0800 Subject: [PATCH] PR Feedback --- go/cmd/dolt/commands/show.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go/cmd/dolt/commands/show.go b/go/cmd/dolt/commands/show.go index fc4a90bdac4..2e203aec454 100644 --- a/go/cmd/dolt/commands/show.go +++ b/go/cmd/dolt/commands/show.go @@ -160,7 +160,7 @@ func (cmd ShowCmd) Exec(ctx context.Context, commandStr string, args []string, d if dEnv == nil { // Logic below requires a non-nil dEnv when --no-pretty is set. // TODO: remove all usage of dEnv entirely from this command. - cli.PrintErrln("`\\show` is not fully supported in the SQL shell.") + cli.PrintErrln("`\\show --no-pretty` is not supported in the SQL shell.") return 1 } @@ -199,7 +199,7 @@ func (cmd ShowCmd) Exec(ctx context.Context, commandStr string, args []string, d return 1 } if dEnv == nil { - cli.PrintErrln("`dolt show (NON_COMMIT_HASH)` requires a local environment. Not intended to common use.") + cli.PrintErrln("`dolt show (NON_COMMIT_HASH)` requires a local environment. Not intended for common use.") return 1 } if !dEnv.DoltDB.Format().UsesFlatbuffers() {