From 80f11cf78bca16335fadee9de857fd59bf837e0d Mon Sep 17 00:00:00 2001
From: Misho Krastev <mkrastev@paypal.com>
Date: Thu, 11 Aug 2016 21:21:47 -0700
Subject: [PATCH] minor corrections to documentation and comments

---
 docs/getting-started.md | 9 ++-------
 job.go                  | 2 +-
 updatejob.go            | 2 +-
 3 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/docs/getting-started.md b/docs/getting-started.md
index ff30a02..b4063a2 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -14,14 +14,9 @@ until step 4 (Start the local cluster).
 Alternatively, if Vagrant and VirtualBox are already configured your machine, 
 you may use a pre-configured vagrant image and skip to the [Creating Aurora Jobs](#creating-aurora-jobs).
 
-To take this path, start by cloning the following repository:
+To take this path, start by cloning the following repository and checking out the DockerComposeExecutor branch:
 ```
-$  git clone git@github.com:rdelval/aurora.git
-```
-
-Checking out the DockerComposeExecutor branch:
-```
-$ git checkout DockerComposeExecutor
+$  git clone -b DockerComposeExecutor git@github.com:rdelval/aurora.git
 ```
 
 And bringing the vagrant box
diff --git a/job.go b/job.go
index 4f24d2c..f9492ea 100644
--- a/job.go
+++ b/job.go
@@ -208,7 +208,7 @@ func (a *Job) AddValueConstraint(name string,
 }
 
 // From Aurora Docs:
-// A constraint the specifies the maximum number of active tasks on a host with
+// A constraint that specifies the maximum number of active tasks on a host with
 // a matching attribute that may be scheduled simultaneously.
 func (a *Job) AddLimitConstraint(name string, limit int32) *Job {
 
diff --git a/updatejob.go b/updatejob.go
index 05b7db1..fa4782a 100644
--- a/updatejob.go
+++ b/updatejob.go
@@ -67,7 +67,7 @@ func (u *UpdateJob) WaitForBatchCompletion(batchWait bool) *UpdateJob {
 	return u
 }
 
-//	Max number of instance failures to tolerate before marking instance as FAILED.
+// Max number of instance failures to tolerate before marking instance as FAILED.
 func (u *UpdateJob) MaxPerInstanceFailures(inst int32) *UpdateJob {
 	u.req.Settings.MaxPerInstanceFailures = inst
 	return u