From 2231eb79f60768c752aaf10eea5b71e6b7f22b02 Mon Sep 17 00:00:00 2001 From: Joshua Wu Date: Tue, 24 Apr 2018 08:35:42 -0700 Subject: [PATCH] CIO-98 Update documentation verbiage (#99) --- README.md | 6 +++--- utils/helpText.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e806ff04..96974b71 100644 --- a/README.md +++ b/README.md @@ -43,10 +43,10 @@ checkit | -------- | ------------ | |`j/k, down/up`| Navigate the list | |`h/l, left/right`| Previous/Next remote | -|`r`| Fetch, prune, and refresh list | +|`r`| Refresh list with a fetch and prune | |`enter`| Select highlighted item | -|`space`| Interactive git log | -|`q, C-c, esc`| Exit check-it-out | +|`space`| Git log | +|`q, C-c, esc`| Quit | ## Contributing Please refer to the [Contributing Guidelines](./CONTRIBUTING.md) diff --git a/utils/helpText.js b/utils/helpText.js index c03c3479..e74e9ae4 100644 --- a/utils/helpText.js +++ b/utils/helpText.js @@ -4,10 +4,10 @@ const helpText = () => { const text = [ [chalk.bold('j/k, down/up'), 'Navigate the list'], [chalk.bold('h/l, left/right'), 'Previous/Next remote'], - [chalk.bold('r'), 'Fetch, prune, and refresh list'], + [chalk.bold('r'), 'Refresh with a fetch and prune'], [chalk.bold('enter'), 'Select highlighted item'], - [chalk.bold('space'), 'Interactive git log'], - [chalk.bold('q, C-c, esc'), 'Exit check-it-out'], + [chalk.bold('space'), 'Git log'], + [chalk.bold('q, C-c, esc'), 'Quit'], ]; return text;