diff --git a/self_compilation.sh b/self_compilation.sh
index 6a86e95f4c7b64bc37c805e74f33fb85c6069107..ba4ac89ede068ec5e368468535e6994d1bd5d4fc 100644
--- a/self_compilation.sh
+++ b/self_compilation.sh
@@ -82,7 +82,7 @@ fi
 
 # Prompt if baseline Plague kernel is desired
 ## If not, proceed to fingerprint device
-read -p "Do you want create a custom kernel tailored to your hardware? (y/n)" response
+read -p "Do you want create a custom kernel tailored to your hardware? (y/n): " response
 response=$(echo $response | tr '[:upper:]' '[:lower:]')
 if [[ $response == "y" ]]; then
     echo "Tailoring kernel configuration to your hardware"
@@ -91,7 +91,7 @@ else
     echo "Using baseline Plague kernel configuration"
 fi
 
-read -p "Do you want to open the kernel configuration editor? (y/n)" response
+read -p "Do you want to open the kernel configuration editor? (y/n): " response
 response=$(echo $response | tr '[:upper:]' '[:lower:]')
 if [[ $response == "y" ]]; then
     make menuconfig