Merge "Fix typo in error message printed if ran under virtualenv"
diff --git a/stack.sh b/stack.sh
index afb6958..25c49c5 100755
--- a/stack.sh
+++ b/stack.sh
@@ -99,10 +99,10 @@
# this explicit as it has come up on the mailing list.
if [[ -n "$VIRTUAL_ENV" ]]; then
echo "You appear to be running under a python virtualenv."
- echo "DevStack does not support this, as we my break the"
+ echo "DevStack does not support this, as we may break the"
echo "virtualenv you are currently in by modifying "
echo "external system-level components the virtualenv relies on."
- echo "We reccommend you use a separate virtual-machine if "
+ echo "We recommend you use a separate virtual-machine if "
echo "you are worried about DevStack taking over your system."
exit 1
fi