aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc/remote_plugin.txt
diff options
context:
space:
mode:
authorGeoff Harcourt <geoff.harcourt@gmail.com>2015-02-24 17:31:42 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-03-08 17:23:48 -0400
commitc0a668aa26a01145bee1d8162e14bacd0a10eca2 (patch)
tree7565c4f7e4cdd50220801b205c9f02b9d095daef /runtime/doc/remote_plugin.txt
parentda457a176be338fcee429684ced8d2dc8b4aefd4 (diff)
downloadrneovim-c0a668aa26a01145bee1d8162e14bacd0a10eca2.tar.gz
rneovim-c0a668aa26a01145bee1d8162e14bacd0a10eca2.tar.bz2
rneovim-c0a668aa26a01145bee1d8162e14bacd0a10eca2.zip
docs: Clean up python, provider, remote_plugin #2056
* "Python" is a proper noun and should be capitalized in prose * Corrected use of "its/it's" * Used better preposition to describe something "in" legacy Vim * Combine fragments into complete sentence
Diffstat (limited to 'runtime/doc/remote_plugin.txt')
-rw-r--r--runtime/doc/remote_plugin.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/remote_plugin.txt b/runtime/doc/remote_plugin.txt
index e5d1efcc96..7394cf7fe4 100644
--- a/runtime/doc/remote_plugin.txt
+++ b/runtime/doc/remote_plugin.txt
@@ -42,7 +42,7 @@ startup as fast as possible if many plugins/hosts are installed.
3. Example *remote-plugin-example*
The best way to learn about remote plugins is with an example, so let's see
-what a python plugin looks like. This plugin exports a command, a function and
+what a Python plugin looks like. This plugin exports a command, a function and
an autocmd. The plugin is called 'Limit', and all it does is limit the number
of requests made to it. Here's the plugin source code:
>
@@ -81,7 +81,7 @@ of requests made to it. Here's the plugin source code:
self.calls += 1
<
-As can be seen, the plugin is implemented using pure python idioms (classes,
+As can be seen, the plugin is implemented using pure Python idioms (classes,
methods, and decorators), the translation between these language-specific
idioms to vimscript occurs while the plugin manifest is being generated (see
below).
@@ -117,7 +117,7 @@ declared command, autocommand, or function is used for the first time.
The manifest generation step is necessary to keep Nvim's startup fast in
situations where a user has remote plugins with different hosts. For example,
-say a user has three plugins, for python, java and .NET hosts respectively. If
+say a user has three plugins, for Python, java and .NET hosts respectively. If
we were to load all three plugins at startup, then three language runtimes
would also be spawned which could take seconds!