From b706cd13f7253d823a8e7453c9e55bac86256ead Mon Sep 17 00:00:00 2001
From: Ed Morley <emorley@mozilla.com>
Date: Mon, 29 Feb 2016 18:00:46 +0000
Subject: [PATCH] Fix README and script comment typos

---
 Readme.md               | 3 +--
 bin/compile             | 8 ++++----
 bin/steps/collectstatic | 2 +-
 3 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/Readme.md b/Readme.md
index b245f510..37b3f7df 100644
--- a/Readme.md
+++ b/Readme.md
@@ -32,12 +32,11 @@ Deploying a Python application couldn't be easier:
 
 A `requirements.txt` file must be present at the root of your application's repository.
 
-You can also specify the latest production relase of this buildpack for upcoming builds of an existing application:
+You can also specify the latest production release of this buildpack for upcoming builds of an existing application:
 
     $ heroku buildpacks:set heroku/python
 
 
-
 Specify a Python Runtime
 ------------------------
 
diff --git a/bin/compile b/bin/compile
index 45e96176..1d2d6535 100755
--- a/bin/compile
+++ b/bin/compile
@@ -1,10 +1,10 @@
 #!/usr/bin/env bash
 
-# The Heroku Python Buildpack. This script accepts paramaters for a build
+# The Heroku Python Buildpack. This script accepts parameters for a build
 # directory, a cache directory, and a directory for app environment variables.
 
-# Warning: there are a few hacks in this script to accomidate excellent builds
-# on Heroku. No gaurentee for external compatibility is made. However,
+# Warning: there are a few hacks in this script to accommodate excellent builds
+# on Heroku. No guarantee for external compatibility is made. However,
 # everything should work fine outside of the Heroku environment, if the
 # environment is setup correctly.
 
@@ -73,7 +73,7 @@ source $BIN_DIR/utils
 # Import collection of warnings.
 source $BIN_DIR/warnings
 
-# Directory Hacks for path consistiency.
+# Directory Hacks for path consistency.
 APP_DIR='/app'
 TMP_APP_DIR=$CACHE_DIR/tmp_app_dir
 
diff --git a/bin/steps/collectstatic b/bin/steps/collectstatic
index 12f05db1..56dc7a7f 100755
--- a/bin/steps/collectstatic
+++ b/bin/steps/collectstatic
@@ -19,7 +19,7 @@ MANAGE_FILE=${MANAGE_FILE:-fakepath}
 # Legacy file-based support for $DISABLE_COLLECTSTATIC
 [ -f .heroku/collectstatic_disabled ] && DISABLE_COLLECTSTATIC=1
 
-# Ensure that Django is explicitily specified in requirments.txt
+# Ensure that Django is explicitly specified in requirements.txt
 pip-grep -s requirements.txt django Django && DJANGO_INSTALLED=1
 
 bpwatch start collectstatic  # metrics collection
-- 
GitLab