aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrayag Verma <prayag.verma@gmail.com>2016-02-01 13:15:26 +0530
committerPrayag Verma <prayag.verma@gmail.com>2016-02-01 13:15:26 +0530
commit1ac6601841de59ef34feaafcbbaca79bbfe8774e (patch)
treeee396d28263ee137eca04097751f94d50f623b15
parent59ef994f8f5fad9aaaa0e1d6eae3af66f6bb2630 (diff)
downloadrneovim-1ac6601841de59ef34feaafcbbaca79bbfe8774e.tar.gz
rneovim-1ac6601841de59ef34feaafcbbaca79bbfe8774e.tar.bz2
rneovim-1ac6601841de59ef34feaafcbbaca79bbfe8774e.zip
doc: fix typo in doc/nvim_provider.txt
Spelling mistake - `peform` > `perform`
-rw-r--r--runtime/doc/nvim_provider.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/nvim_provider.txt b/runtime/doc/nvim_provider.txt
index a737d51ac4..91cd5fbfc7 100644
--- a/runtime/doc/nvim_provider.txt
+++ b/runtime/doc/nvim_provider.txt
@@ -26,7 +26,7 @@ are now decoupled from Nvim core as providers:
The first example is clipboard integration: in the original Vim source code,
clipboard functions account for more than 1k lines of C source code (and that
-is just on ui.c), all to peform two tasks that are now accomplished with
+is just on ui.c), all to perform two tasks that are now accomplished with
simple shell commands such as xclip or pbcopy/pbpaste.
The other example is Python scripting support: Vim has three files dedicated to