From 7ce113b2a50bd8bc4a5db59f727d2a882c0389a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Madrid=20Menc=C3=ADa?= Date: Sat, 31 Mar 2018 19:51:54 +0200 Subject: [PATCH] Fix typos: - warpprer -> wrapper - executeable -> executable - easist -> easiest --- README.md | 8 ++++---- autoload/SpaceVim/api/job.vim | 2 +- docs/layers/ctrlp.md | 2 +- docs/layers/denite.md | 2 +- docs/layers/fzf.md | 2 +- docs/layers/leaderf.md | 2 +- docs/layers/unite.md | 2 +- docs/quick-start-guide.md | 2 +- wiki/en/project_layout.md | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index d8d77c7c5..c436dc3af 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ [![Percentage of issues still open](http://isitmaintained.com/badge/open/SpaceVim/SpaceVim.svg)](http://isitmaintained.com/project/SpaceVim/SpaceVim "Percentage of issues still open") SpaceVim is a community-driven modular vim distribution. It manages collections -of plugins in layers, which help collect related packages together to provide IDE-like features. +of plugins in layers, which help collect related packages together to provide IDE-like features. SpaceVim is not only a vimrc but an ultimate Vim configuration, It contains many build-in features. ![welcome-page](https://user-images.githubusercontent.com/13142418/37595020-273b5bca-2bb2-11e8-8aba-638ed5f1c7ea.png) @@ -100,7 +100,7 @@ curl -sLf https://spacevim.org/install.sh | bash After SpaceVim is installed, launch `vim` and SpaceVim will **automatically** install plugins. -For more info about the install script, please check: +For more info about the installation script, please check: ```bash curl -sLf https://spacevim.org/install.sh | bash -s -- -h @@ -108,7 +108,7 @@ curl -sLf https://spacevim.org/install.sh | bash -s -- -h **Windows** -The easist way is to download [install.cmd](https://spacevim.org/install.cmd) and run it as administrator, or install SpaceVim manually. +The easiest way is to download [install.cmd](https://spacevim.org/install.cmd) and run it as administrator, or install SpaceVim manually. ### Project layout @@ -124,7 +124,7 @@ The easist way is to download [install.cmd](https://spacevim.org/install.cmd) an ├─ doc/ help(cn/en) ├─ docs/ website(cn/en) ├─ wiki/ wiki(cn/en) -├─ bin/ executeable +├─ bin/ executable └─ test/ tests ``` diff --git a/autoload/SpaceVim/api/job.vim b/autoload/SpaceVim/api/job.vim index 6ec4f0ecc..a91546c4a 100644 --- a/autoload/SpaceVim/api/job.vim +++ b/autoload/SpaceVim/api/job.vim @@ -88,7 +88,7 @@ function! s:self.start(argv, ...) abort call extend(self.jobs, {job : msg}) else if job == -1 - call add(self._message, 'Failed to start job:' . (type(a:argv) == 3 ? a:argv[0] : a:argv) . ' is not executeable') + call add(self._message, 'Failed to start job:' . (type(a:argv) == 3 ? a:argv[0] : a:argv) . ' is not executable') elseif job == 0 call add(self._message, 'Failed to start job: invalid arguments') endif diff --git a/docs/layers/ctrlp.md b/docs/layers/ctrlp.md index 587f10b5b..f1dca5ee8 100644 --- a/docs/layers/ctrlp.md +++ b/docs/layers/ctrlp.md @@ -7,7 +7,7 @@ description: "This layers provide a heavily customized ctrlp centric work-flow" ## Intro -This layer is a heavily customized warpper for ctrlp. +This layer is a heavily customized wrapper for ctrlp. ## Key bindings diff --git a/docs/layers/denite.md b/docs/layers/denite.md index 040e05cba..7103bed36 100644 --- a/docs/layers/denite.md +++ b/docs/layers/denite.md @@ -7,7 +7,7 @@ description: "This layers provide a heavily customized Denite centric work-flow" ## Intro -This layer is a heavily customized warpper for denite and it's sources. +This layer is a heavily customized wrapper for denite and it's sources. ## Configuration diff --git a/docs/layers/fzf.md b/docs/layers/fzf.md index 2cbc1f118..9d6e3fa83 100644 --- a/docs/layers/fzf.md +++ b/docs/layers/fzf.md @@ -7,7 +7,7 @@ description: "This layers provide a heavily customized fzf centric work-flow" ## Intro -This layer is a heavily customized warpper for fzf. +This layer is a heavily customized wrapper for fzf. ## Key bindings diff --git a/docs/layers/leaderf.md b/docs/layers/leaderf.md index 7d4b6d2fd..99f13781b 100644 --- a/docs/layers/leaderf.md +++ b/docs/layers/leaderf.md @@ -7,7 +7,7 @@ description: "This layers provide a heavily customized LeaderF centric work-flow ## Intro -This layer is a heavily customized warpper for LeaderF and it's sources. +This layer is a heavily customized wrapper for LeaderF and it's sources. ## Configuration diff --git a/docs/layers/unite.md b/docs/layers/unite.md index 5be6f95e9..9cfef0d44 100644 --- a/docs/layers/unite.md +++ b/docs/layers/unite.md @@ -7,7 +7,7 @@ description: "This layers provide a heavily customized Unite centric work-flow" ## Intro -This layer is a heavily customized warpper for unite.vim and unite sources. +This layer is a heavily customized wrapper for unite.vim and unite sources. ## Configuration diff --git a/docs/quick-start-guide.md b/docs/quick-start-guide.md index 02851cfa8..0ec8552bf 100644 --- a/docs/quick-start-guide.md +++ b/docs/quick-start-guide.md @@ -44,7 +44,7 @@ curl -sLf https://spacevim.org/install.sh | bash -s -- -h ### Windows -The easist way is to download [install.cmd](https://spacevim.org/install.cmd) and run it as administrator, or install SpaceVim manually. +The easiest way is to download [install.cmd](https://spacevim.org/install.cmd) and run it as administrator, or install SpaceVim manually. ## Learning SpaceVim diff --git a/wiki/en/project_layout.md b/wiki/en/project_layout.md index b51b50fcd..0ecb6752f 100644 --- a/wiki/en/project_layout.md +++ b/wiki/en/project_layout.md @@ -22,5 +22,5 @@ In the main repo, the layout is: ├─ doc/SpaceVim.txt help ├─ docs/ website ├─ wiki/ wiki - ├─ bin/ executeable + ├─ bin/ executable └─ test/ tests