From 8409a707a12e1d60f80ed0f96b2171524e874385 Mon Sep 17 00:00:00 2001 From: ssfjhh Date: Tue, 8 Jan 2019 11:47:28 +0800 Subject: [PATCH] Fixed: fix typos. (#2437) --- docs/development.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/development.md b/docs/development.md index cd38bbfc0..3ec2bf387 100644 --- a/docs/development.md +++ b/docs/development.md @@ -87,7 +87,7 @@ SpaceVim is based on conventions, mainly for naming functions, keybindings defin #### Title prefix of pull request -pull request title should contains one of these prefix: +Pull request titles should contain one of these prefix: - `Add:` Adding a new feature. - `Change:` Change default behaviors or the existing features. @@ -96,7 +96,7 @@ pull request title should contains one of these prefix: - `Doc:` update the help file. - `Website:` Update the content of website. -here is an example: +Here is an example: `Website: update the lang#c layer page` @@ -119,7 +119,7 @@ git remote add upstream https://github.com/SpaceVim/SpaceVim.git ```sh git fetch upstream -git rebase upstream/master master +git rebase upstream/master ``` #### Ideally for simple PRs @@ -199,7 +199,7 @@ You should replace FILENAME by the name of the file (e.g. foo.vim) and NAME by t In the files header, change the default author name (Shidong Wang) to your name. -here is an example for creating a new layer names `foo`: +Here is an example for creating a new layer names `foo`: 1. fork SpaceVim repo 2. add a layer file `autoload/SpaceVim/layers/foo.vim` for `foo` layer.