Skip to content

Commit

Permalink
Fix casing of .cache metacommand autocomplete #875
Browse files Browse the repository at this point in the history
kaidaguerre committed Sep 12, 2021
1 parent c2139b8 commit 9cca76b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions query/metaquery/definitions.go
Original file line number Diff line number Diff line change
@@ -100,9 +100,9 @@ func init() {
title: constants.CmdCache,
handler: cacheControl,
validator: composeValidator(exactlyNArgs(1), validatorFromArgsOf(constants.CmdCache)),
description: "Toggle the query cache (on/off) or Clear the query cache",
description: "Enable, disable or clear the query cache",
args: []metaQueryArg{
{value: constants.ArgOn, description: "Turn on Caching"},
{value: constants.ArgOn, description: "Turn on caching"},
{value: constants.ArgOff, description: "Turn off caching"},
{value: constants.ArgClear, description: "Clear the cache"},
},

0 comments on commit 9cca76b

Please sign in to comment.