# HG changeset patch # User Peter Sanchez # Date 1615653416 28800 # Sat Mar 13 08:36:56 2021 -0800 # Node ID 46fe95d099dfc9f52374ffc71ab16422063192c3 # Parent 2b6a41561707ef93dc1e0f7b9897fe5702892ae1 Stupid typo cleanup diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Flags: -d, --database string Path to SQLite3 database file. (default "~/.tago/tago.db") - -f, --fullpath Use full path for all files (disabled relative path display.) + -f, --fullpath Use full path for all files (disabled relative path display) -h, --help help for tago -v, --version version for tago diff --git a/cmd/root.go b/cmd/root.go --- a/cmd/root.go +++ b/cmd/root.go @@ -25,7 +25,7 @@ ) rootCmd.PersistentFlags().BoolVarP( &fullPath, "fullpath", "f", false, - "Use full path for all files (disabled relative path display.)", + "Use full path for all files (disabled relative path display)", ) }