From eab5510c03eaee135c3b738769d0a5177edaa6aa Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Fri, 5 May 2023 22:10:40 +0530 Subject: [PATCH] Explicitly mention it is id of email and not email id for --email (#3329) It was easier to confuse `email ID` with `email id` and think it is the email address. This commit makes it clear that it is the id of the email message. --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [x] :world_map: Documentation - [ ] :robot: Supportability/Tests - [ ] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * # #### Test Plan - [x] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- src/cli/utils/exchange.go | 2 +- website/docs/quickstart.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cli/utils/exchange.go b/src/cli/utils/exchange.go index ac3de3871..d167c710e 100644 --- a/src/cli/utils/exchange.go +++ b/src/cli/utils/exchange.go @@ -113,7 +113,7 @@ func AddExchangeDetailsAndRestoreFlags(cmd *cobra.Command) { fs.StringSliceVar( &EmailFV, EmailFN, nil, - "Select emails by email ID; accepts '"+Wildcard+"' to select all emails.") + "Select email messages by ID; accepts '"+Wildcard+"' to select all emails.") fs.StringSliceVar( &EmailFolderFV, EmailFolderFN, nil, diff --git a/website/docs/quickstart.md b/website/docs/quickstart.md index 15e25ebb6..906202070 100644 --- a/website/docs/quickstart.md +++ b/website/docs/quickstart.md @@ -250,7 +250,7 @@ To restore the selected email, use the following command. ```powershell # Restore a selected email - .\corso restore exchange --backup --email + .\corso restore exchange --backup --email ``` @@ -258,7 +258,7 @@ To restore the selected email, use the following command. ```bash # Restore a selected email - ./corso restore exchange --backup --email + ./corso restore exchange --backup --email ``` @@ -268,7 +268,7 @@ To restore the selected email, use the following command. `# Restore a selected email docker run --env-file $HOME/.corso/corso.env \\ --volume $HOME/.corso:/app/corso ghcr.io/alcionai/corso:${Version()} \\ - restore exchange --backup --email ` + restore exchange --backup --email ` }