From ff3e086e3fafc028fb68710ab3d291bdbef80446 Mon Sep 17 00:00:00 2001 From: Jarek Kowalski Date: Sun, 25 Sep 2016 21:05:24 -0700 Subject: [PATCH] fixed help text --- cmd/kopia/command_mount.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/kopia/command_mount.go b/cmd/kopia/command_mount.go index 18b444d16..944d987df 100644 --- a/cmd/kopia/command_mount.go +++ b/cmd/kopia/command_mount.go @@ -19,7 +19,7 @@ mountObjectID = mountCommand.Arg("path", "Identifier of the directory to mount.").Required().String() mountPoint = mountCommand.Arg("mountPoint", "Mount point").Required().ExistingDir() mountTraceFS = mountCommand.Flag("trace-fs", "Trace filesystem operations").Bool() - mountMaxCachedEntries = mountCommand.Flag("max-cached-entries", "Limit the number of cached directories").Default("100000").Int() + mountMaxCachedEntries = mountCommand.Flag("max-cached-entries", "Limit the number of cached directory entries").Default("100000").Int() mountMaxCachedDirectories = mountCommand.Flag("max-cached-dirs", "Limit the number of cached directories").Default("100").Int() )