From 6259a3260189c9e4b96529a05edd5613720429f6 Mon Sep 17 00:00:00 2001
From: David da Silva <dasilvacontin@gmail.com>
Date: Wed, 11 Jan 2017 10:04:48 +0100
Subject: [PATCH 1/2] Add TravisCI Setup to README.md

---
 README.md | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/README.md b/README.md
index be0b913..cae8f9c 100644
--- a/README.md
+++ b/README.md
@@ -56,6 +56,19 @@ While ShellCheck is mostly intended for interactive use, it can easily be added
 
 ShellCheck makes canonical use of exit codes, and can output simple JSON, CheckStyle compatible XML, GCC compatible warnings as well as human readable text (with or without ANSI colors). See the [Integration](https://github.com/koalaman/shellcheck/wiki/Integration) wiki page for more documentation.
 
+## TravisCI Setup
+
+If you want to use ShellCheck in TravisCI, setting it up is simple :tada:.
+
+```yml
+language: bash
+addons:
+  apt:
+    sources:
+    - debian-sid    # Grab shellcheck from the Debian repo
+    packages:
+    - shellcheck
+```
 
 ## Installing
 

From eb12086d05c5519d6fa3e36dd212c43c197d8e59 Mon Sep 17 00:00:00 2001
From: David da Silva <dasilvacontin@gmail.com>
Date: Wed, 11 Jan 2017 11:48:57 +0100
Subject: [PATCH 2/2] Fix typos in Travis CI section of the README.md

---
 README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index cae8f9c..8dd2f9a 100644
--- a/README.md
+++ b/README.md
@@ -56,16 +56,16 @@ While ShellCheck is mostly intended for interactive use, it can easily be added
 
 ShellCheck makes canonical use of exit codes, and can output simple JSON, CheckStyle compatible XML, GCC compatible warnings as well as human readable text (with or without ANSI colors). See the [Integration](https://github.com/koalaman/shellcheck/wiki/Integration) wiki page for more documentation.
 
-## TravisCI Setup
+## Travis CI Setup
 
-If you want to use ShellCheck in TravisCI, setting it up is simple :tada:.
+If you want to use ShellCheck in Travis CI, setting it up is simple :tada:.
 
 ```yml
 language: bash
 addons:
   apt:
     sources:
-    - debian-sid    # Grab shellcheck from the Debian repo
+    - debian-sid    # Grab ShellCheck from the Debian repo
     packages:
     - shellcheck
 ```