From 5b29c76f7aadbe99ab942de9eed69b99df8af127 Mon Sep 17 00:00:00 2001
From: Sumit Nihalani <nihalanisumit@gmail.com>
Date: Thu, 5 Sep 2019 09:32:32 +0530
Subject: [PATCH] docs: fix typos (#4431)

---
 docs/adding-a-package-manager.md | 2 +-
 docs/branches-commits.md         | 2 +-
 docs/configuration.md            | 2 +-
 docs/pre-release.md              | 2 +-
 docs/readme.md                   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/adding-a-package-manager.md b/docs/adding-a-package-manager.md
index a3098302db..b5ecdb592c 100644
--- a/docs/adding-a-package-manager.md
+++ b/docs/adding-a-package-manager.md
@@ -43,7 +43,7 @@ This function doesn't necessarily need to _understand_ the file or even syntax t
 
 As a general approach, we want to extract _all_ dependencies from each dependency file, even if they contain values we don't support. For any that have unsupported values that we cannot renovate, this `extractPackageFile` function should set a `skipReason` to a value that would be helpful to someone reading the logs.
 
-Also, if a file is passed to `extractPackageFile` that is a "false match" (e.g. not an actual package file, or contains no dependencies) then this function can return `null` to have it ignored and removed from the list of package files. A common case for this is in Meteor, where its `package.js` file name is not unique and there many be many non-Meteor projects using that filename.
+Also, if a file is passed to `extractPackageFile` which is a "false match" (e.g. not an actual package file, or contains no dependencies) then this function can return `null` to have it ignored and removed from the list of package files. A common case for this is in Meteor, where its `package.js` file name is not unique and there may be many non-Meteor projects using that filename.
 
 ##### `extractAllPackageFiles(packageFiles)` (async, optional)
 
diff --git a/docs/branches-commits.md b/docs/branches-commits.md
index fe68893e47..dffbee930b 100644
--- a/docs/branches-commits.md
+++ b/docs/branches-commits.md
@@ -20,7 +20,7 @@ For GitHub, we use the low-level `git`-based API to manually make the commits an
 
 #### GitLab
 
-In GitLab, Merge Request are not automatically closed if you delete the associated branch, so that gives us more flexibility. Therefore the way we update a branch is simply to delete it and then create the branch + commits again, and GitLab immediately reassociates the new (single) commit with the existing PR.
+In GitLab, Merge Requests are not automatically closed if you delete the associated branch, so that gives us more flexibility. Therefore the way we update a branch is simply to delete it and then create the branch + commits again, and GitLab immediately reassociates the new (single) commit with the existing PR.
 
 #### Azure DevOps
 
diff --git a/docs/configuration.md b/docs/configuration.md
index 41ce140402..cb94edfb6b 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -10,7 +10,7 @@ Configuration is supported via any or all of the below:
 - `renovate.json`, `renovate.json5`, `.github/renovate.json`, `.github/renovate.json5`, `.renovaterc.json`, or `.renovaterc` in target repository
 - `renovate` field of `package.json` in target repository
 
-The above are listed in reverse order of preference. i.e. `package.json`
+The above are listed in **_reverse order_** of preference. i.e. `package.json`
 settings will override `renovate.json` settings, CLI, which overrides env, which
 overrides the config file, which overrides defaults.
 
diff --git a/docs/pre-release.md b/docs/pre-release.md
index 1d4786217e..449034879e 100644
--- a/docs/pre-release.md
+++ b/docs/pre-release.md
@@ -40,7 +40,7 @@ How to use: Add `"gradle": { "enabled": true }` to either your bot config or you
 
 Status: beta
 
-Maven support has been implemented, initially supporting exact/pinned versions only, which should still be useful for hte majority of users who don't specify ranges in their `pom.xml` files.
+Maven support has been implemented, initially supporting exact/pinned versions only, which should still be useful for the majority of users who don't specify ranges in their `pom.xml` files.
 
 How to use: Add `"maven": { "enabled": true }` to either your bot config or your repository's `renovate.json`. If your repository contains _only_ Maven package files and no others then you'll need to add the `renovate.json` manually as otherwise Renovate won't detect any package files by default and will skip the Onboarding PR.
 
diff --git a/docs/readme.md b/docs/readme.md
index 187ec69c60..43dab4078f 100644
--- a/docs/readme.md
+++ b/docs/readme.md
@@ -2,4 +2,4 @@
 
 This directory is intended to provide documentation for developers/contributors on the Renovate project. For user-facing documentation - e.g. for how to configure Renovate as a user - please see https://docs.renovatebot.com
 
-If you would like to contribute to Renovate or get it running locally for some others reason, please check out [contributing.md](../.github/contributing.md) for steps on how to set up the project locally.
+If you would like to contribute to Renovate or get it running locally for some other reason, please check out [contributing.md](../.github/contributing.md) for steps on how to set up the project locally.
-- 
GitLab