From 4f353dc20e320e40cdfccef41c259d7da82eb2e7 Mon Sep 17 00:00:00 2001
From: Seamus Lee <seamuslee001@gmail.com>
Date: Mon, 14 Oct 2019 06:36:30 +0200
Subject: [PATCH] Incorporate review suggestions from @mikeyMJCO

Co-Authored-By: Mikey O'Toole <mikey@mjco.uk>
---
 docs/api/v3/chaining.md | 2 +-
 docs/api/v4/chaining.md | 4 ++--
 docs/api/v4/joins.md    | 6 +++---
 docs/core/pr-review.md  | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/api/v3/chaining.md b/docs/api/v3/chaining.md
index 2d256104..7719233e 100644
--- a/docs/api/v3/chaining.md
+++ b/docs/api/v3/chaining.md
@@ -1,6 +1,6 @@
 # APIv3 Chaining
 
-It is now possible to do two API calls at once with the first call feeding into the second. E.g. to create a contact with a contribution you can nest the contribution create into the contact create. Once the contact has been created it will action the contribution create using the id from the contact create as `contact_id`. Likewise you can ask for all activities or all contributions to be returned when you do a get.
+It is possible to do two API calls at once with the first call feeding into the second. E.g. to create a contact with a contribution you can nest the contribution create into the contact create. Once the contact has been created it will action the contribution create using the id from the contact create as `contact_id`. Likewise you can ask for all activities or all contributions to be returned when you do a `get`.
 
 See [api/v3/examples](https://github.com/civicrm/civicrm-core/tree/master/api/v3/examples) within the core source code for a plethora of examples (from unit tests) that use chaining. To start, look at these examples:
 
diff --git a/docs/api/v4/chaining.md b/docs/api/v4/chaining.md
index b1432bb4..38171f48 100644
--- a/docs/api/v4/chaining.md
+++ b/docs/api/v4/chaining.md
@@ -1,6 +1,6 @@
 # APIv4 Chaining
 
-It is now possible to do two API calls at once with the first call feeding into the second. E.g. to create a contact with a contribution you can nest the contribution create into the contact create. Once the contact has been created it will action the contribution create using the id from the contact create as `contact_id`. Likewise you can ask for all activities or all contributions to be returned when you do a get.
+It is possible to do two API calls at once with the first call feeding into the second. E.g. to create a contact with a contribution you can nest the contribution create into the contact create. Once the contact has been created it will action the contribution create using the id from the contact create as `contact_id`. Likewise you can ask for all activities or all contributions to be returned when you do a `get`.
 
 Note that there are a few supported syntaxes:
 
@@ -31,7 +31,7 @@ civicrm_api('Contact', 'create', [
 ]);
 ```
 
-If you have 2 websites to create you can pass them as separate key => array pairs just specifiy a unique array key in the chain array
+If you have 2 websites to create you can pass them as separate key => array pairs just specify a unique array key in the chain array
 
 Object Oriented way
 
diff --git a/docs/api/v4/joins.md b/docs/api/v4/joins.md
index 5d281591..1bbe0ea0 100644
--- a/docs/api/v4/joins.md
+++ b/docs/api/v4/joins.md
@@ -10,7 +10,7 @@ To use a join in an API call, specify the name of the field on which the join ha
 
 For instance, to search for all primary emails, returning the email and joining to also return the contact's display name:
 
-Object oreinted way:
+Object Oriented way:
 
 ```php
 $result \Civi\Api4\Email::get()
@@ -38,7 +38,7 @@ $result = civicrm_api4('Email', 'get', [
 
 Alternatively, to return email addresses of everyone whose last name is Smith by joining to the Contact entity:
 
-Object oreinted way:
+Object Oriented way:
 
 ```php
 $result \Civi\Api4\Email::get()
@@ -61,7 +61,7 @@ $result = civicrm_api4('Email', 'get', [
 
 You can join multiple times in one query.  For instance, to return a list of events, displaying their name, the name of the related campaign, and that campaign's type:
 
-Object oreinted way:
+Object Oriented way:
 
 ```php
 $result \Civi\Api4\Email::get()
diff --git a/docs/core/pr-review.md b/docs/core/pr-review.md
index 73df9a41..c72eae2e 100644
--- a/docs/core/pr-review.md
+++ b/docs/core/pr-review.md
@@ -46,7 +46,7 @@ On the PR, click over to “Files Changed” and understand what the code is doi
 
 ## Reproduce the problem
 
-Confirm which branch the PR was created against. This is probably either `master` or an Release Candidate branch. Setup an instance locally from that branch (e.g. with [buildkit](https://github.com/civicrm/civicrm-buildkit)), or test on the [public demo site if possible](https://civicrm.org/demo). Repeat the steps to reproduce described in the ticket or PR.
+Confirm which branch the PR was created against. This is probably either `master` or a Release Candidate branch. Setup an instance locally from that branch (e.g. with [buildkit](https://github.com/civicrm/civicrm-buildkit)), or test on the [public demo site if possible](https://civicrm.org/demo). Repeat the steps to reproduce described in the ticket or PR.
 
 Confirm that the issue was a problem and a problem “worth solving”, generally worthy of being in core.
 
-- 
GitLab