From a8156ebf77a095fab3347edc71e5f92024cf1b65 Mon Sep 17 00:00:00 2001
From: Trever Shick <trevershick@gmail.com>
Date: Mon, 2 Sep 2019 02:56:04 -0400
Subject: [PATCH] Fix spelling of availability in install.sh (#132)

---
 .ci/install.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.ci/install.sh b/.ci/install.sh
index 4069fc7..b43657a 100755
--- a/.ci/install.sh
+++ b/.ci/install.sh
@@ -71,7 +71,7 @@ download_fnm() {
 check_dependencies() {
   echo "Checking dependencies for the installation script..."
 
-  echo -n "Checking availablity of curl... "
+  echo -n "Checking availability of curl... "
   if hash curl 2>/dev/null; then
     echo "OK!"
   else
@@ -79,7 +79,7 @@ check_dependencies() {
     SHOULD_EXIT="true"
   fi
 
-  echo -n "Checking availablity of unzip... "
+  echo -n "Checking availability of unzip... "
   if hash unzip 2>/dev/null; then
     echo "OK!"
   else