aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-02-01 02:50:26 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-02-01 02:50:26 -0500
commit76086b36b777440a79b77e8c7a3670f5b0003917 (patch)
tree82cc25d10162be8dc82070744b728940d2fae4ef
parentbe1d5a61be3e75d4d2b15b76b2bb027605c70ff8 (diff)
parent1ac6601841de59ef34feaafcbbaca79bbfe8774e (diff)
downloadrneovim-76086b36b777440a79b77e8c7a3670f5b0003917.tar.gz
rneovim-76086b36b777440a79b77e8c7a3670f5b0003917.tar.bz2
rneovim-76086b36b777440a79b77e8c7a3670f5b0003917.zip
Merge pull request #4145 from pra85/patch-1
typo in doc/nvim_provider.txt
-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