Fix plural/singular for flags (#1230)

## Description

Unify plural/singular for flags

## Type of change

<!--- Please check the type of change your PR introduces: --->
- [ ] 🌻 Feature
- [x] 🐛 Bugfix
- [ ] 🗺️ Documentation
- [ ] 🤖 Test
- [ ] 💻 CI/Deployment
- [ ] 🐹 Trivial/Minor

## Issue(s)

<!-- Can reference multiple issues. Use one of the following "magic words" - "closes, fixes" to auto-close the Github issue. -->

## Test Plan

<!-- How will this be tested prior to merging.-->
- [x] 💪 Manual
- [ ]  Unit test
- [ ] 💚 E2E
This commit is contained in:
Georgi Matev 2022-10-21 18:19:36 -07:00 committed by GitHub
parent 645dabd63f
commit 8e1519a325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -8,11 +8,11 @@ import (
// flag names
const (
ContactFN = "contacts"
ContactFN = "contact"
ContactFolderFN = "contact-folder"
EmailFN = "email"
EmailFolderFN = "email-folder"
EventFN = "events"
EventFN = "event"
EventCalendarFN = "event-calendar"
ContactNameFN = "contact-name"
EmailReceivedAfterFN = "email-received-after"

View File

@ -8,9 +8,9 @@ import (
const (
FileFN = "file"
FolderFN = "folders"
NamesFN = "names"
PathsFN = "paths"
FolderFN = "folder"
NamesFN = "name"
PathsFN = "path"
FileCreatedAfterFN = "file-created-after"
FileCreatedBeforeFN = "file-created-before"
FileModifiedAfterFN = "file-modified-after"