Skip to content

Commit

Permalink
Typos (#150)
Browse files Browse the repository at this point in the history
* docs: Fix small typos in help output

* fix: Typo
  • Loading branch information
Jesse S authored Dec 23, 2021
1 parent e047245 commit 4fbef6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/live_cluster/manage_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from lib.get_controller import GetConfigController
from lib.utils.lookup_dict import PrefixDict
from .client import (
ASInfoClusterStableError,
ASInfoClusterStableError,
ASInfoError,
ASProtocolError,
BoolConfigType,
Expand Down Expand Up @@ -54,7 +54,7 @@ def prompt_challenge(self, message=""):

@CommandHelp(
'"manage" is used for administrative tasks like managing users, roles, udf, and',
'sindexes. It should be used in conjunction with the "show users" and "show roles',
'sindexes. It should be used in conjunction with the "show users" and "show roles"',
"command.",
)
class ManageController(LiveClusterCommandController):
Expand Down Expand Up @@ -2207,7 +2207,7 @@ def _do_default(self, line):
@CommandHelp(
'"manage quiesce" causes a node to avoid participating as a replica after the next recluster event.',
"Usage: quiesce with node1 [node2 [...]] [undo]",
" with - The node(s) to quiesce. Exceptable values are ip:port, node-id, or FQDN.",
" with - The node(s) to quiesce. Acceptable values are ip:port, node-id, or FQDN.",
" undo - Revert the effects of the quiesce on the next recluster event.",
" [default: false]",
)
Expand Down
2 changes: 1 addition & 1 deletion lib/live_cluster/show_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ def do_sindex_builder(self, line):
)


@CommandHelp('Displays rack information for a rack-aware cluster".')
@CommandHelp("Displays rack information for a rack-aware cluster.")
class ShowRacksController(LiveClusterCommandController):
def __init__(self):
self.modifiers = set(["with"])
Expand Down

0 comments on commit 4fbef6e

Please sign in to comment.