Skip to content

Commit

Permalink
Fix typo: coundn't -> couldn't
Browse files Browse the repository at this point in the history
  • Loading branch information
paasar committed Oct 23, 2017
1 parent f67584e commit a58ce34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/lein
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ fi

if [ ! -x "$JAVA_CMD" ] && ! type -f java >/dev/null
then
>&2 echo "Leiningen coundn't find 'java' executable, which is required."
>&2 echo "Leiningen couldn't find 'java' executable, which is required."
>&2 echo "Please either set JAVA_CMD or put java (>=1.6) in your \$PATH ($PATH)."
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion bin/lein-pkg
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ fi
export JVM_OPTS="${JVM_OPTS:-"$JAVA_OPTS"}"

function command_not_found {
>&2 echo "Leiningen coundn't find $1 in your \$PATH ($PATH), which is required."
>&2 echo "Leiningen couldn't find $1 in your \$PATH ($PATH), which is required."
exit 1
}

Expand Down
4 changes: 2 additions & 2 deletions bin/lein-sdkman
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ else
fi

function command_not_found {
>&2 echo "Leiningen coundn't find $1 in your \$PATH ($PATH), which is required."
>&2 echo "Leiningen couldn't find $1 in your \$PATH ($PATH), which is required."
exit 1
}

Expand Down Expand Up @@ -113,7 +113,7 @@ fi

if [ ! -x "$JAVA_CMD" ] && ! type -f java >/dev/null
then
>&2 echo "Leiningen coundn't find 'java' executable, which is required."
>&2 echo "Leiningen couldn't find 'java' executable, which is required."
>&2 echo "Please either set JAVA_CMD or put java (>=1.6) in your \$PATH ($PATH)."
exit 1
fi
Expand Down

0 comments on commit a58ce34

Please sign in to comment.