From 4a1840d59efd8f107431abeb890ec7b55c72c8f7 Mon Sep 17 00:00:00 2001 From: Shiv Jha-Mathur Date: Mon, 8 Nov 2021 03:55:51 +0530 Subject: [PATCH] fix: fix typo in command description --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index a31b60a..0262576 100644 --- a/main.go +++ b/main.go @@ -61,7 +61,7 @@ func main() { } rootCmd.Flags().StringVarP(&unknownMarker, "unknown-marker", "m", "?", "string to use to indicate unknown tags") rootCmd.Flags().StringVarP(&query, "query", "q", "", "single image to return tag for (see `occurrence`)") - rootCmd.Flags().IntVarP(&occurrence, "occurrence", "n", 1, "which occurrence of the image to return tag for") + rootCmd.Flags().IntVarP(&occurrence, "occurrence", "n", 1, "which occurrence of image to return tag for") if err := rootCmd.Execute(); err != nil { log.Fatal(err)