From b4e1d8db5d9c7f95728ce217ea51c2fc2d02bc1e Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sat, 3 Apr 2021 02:02:16 +0900 Subject: [PATCH] chore: fix typo in install.sh occurances -> occurrences --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 86c7a01f..4a6c9955 100755 --- a/install.sh +++ b/install.sh @@ -557,8 +557,8 @@ echoerr() { echoh "$@" >&2 } -# humanpath replaces all occurances of " $HOME" with " ~" -# and all occurances of '"$HOME' with the literal '"$HOME'. +# humanpath replaces all occurrences of " $HOME" with " ~" +# and all occurrences of '"$HOME' with the literal '"$HOME'. humanpath() { sed "s# $HOME# ~#g; s#\"$HOME#\"\$HOME#g" }