From 3b5e3a312d25bc79e21998b85c1de5f8dfbef897 Mon Sep 17 00:00:00 2001 From: Yunbao <66679512+YunbaoFC@users.noreply.github.com> Date: Mon, 24 May 2021 17:22:33 +0200 Subject: [PATCH] Fix typo in extract-documents-content description (#17627) Co-authored-by: Yunbao <66679512+NewFlocon@users.noreply.github.com> --- cmd/mattermost/commands/extract_content.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/mattermost/commands/extract_content.go b/cmd/mattermost/commands/extract_content.go index 1a12165e91..24aab25bd1 100644 --- a/cmd/mattermost/commands/extract_content.go +++ b/cmd/mattermost/commands/extract_content.go @@ -16,7 +16,7 @@ import ( var ExtractContentCmd = &cobra.Command{ Use: "extract-documents-content", Short: "Extracts the documents content", - Long: "Extracts the documents content and stores it in the database for document searche", + Long: "Extracts the documents content and stores it in the database for document search", Example: "extract-documents-content --from=12345", RunE: extractContentCmdF, }