diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-10-15 20:31:12 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-10-17 01:51:21 +0200 |
commit | d214df4e9b23b5f2d9f7e6c78624881a7d298cdb (patch) | |
tree | 6817d299e5b25833cfb45d0383bdd03b474aec60 /src/nvim/ops.c | |
parent | 5baeb4a49c061472a125f98af798c522d8504fbe (diff) | |
download | rneovim-d214df4e9b23b5f2d9f7e6c78624881a7d298cdb.tar.gz rneovim-d214df4e9b23b5f2d9f7e6c78624881a7d298cdb.tar.bz2 rneovim-d214df4e9b23b5f2d9f7e6c78624881a7d298cdb.zip |
doc: replace ":CheckHealth" with ":checkhealth"
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c index e7bc20698b..c6df71ea46 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -5535,7 +5535,7 @@ int get_default_register_name(void) static yankreg_T *adjust_clipboard_name(int *name, bool quiet, bool writing) { #define MSG_NO_CLIP "clipboard: No provider. " \ - "Try \":CheckHealth\" or \":h clipboard\"." + "Try \":checkhealth\" or \":h clipboard\"." yankreg_T *target = NULL; bool explicit_cb_reg = (*name == '*' || *name == '+'); |