From 3a4c5e6e5cfc8fad2bbbefb9dd462771825cb6bc Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Oct 27 2010 09:43:30 +0000 Subject: Fix commentary typo inside help_removeEntry.sh. --- diff --git a/Scripts/Bash/Functions/Help/help_removeEntry.sh b/Scripts/Bash/Functions/Help/help_removeEntry.sh index 2befe7b..e69b1de 100755 --- a/Scripts/Bash/Functions/Help/help_removeEntry.sh +++ b/Scripts/Bash/Functions/Help/help_removeEntry.sh @@ -51,12 +51,12 @@ function help_removeEntry { LOCATION=$(dirname $ENTRY) fi - # Look for dependent entries. In this contest, dependent entries + # Look for dependent entries. In this context, dependent entries # are all files ending in .texi which have a directory name that # matches the file name (without .texi extension) of the entry # being processed currently. See LOCATION default definition - # above. If location directory doesn't exist is probably because - # there is no dependent entries. + # above. If location directory doesn't exist it is probably + # because there is no dependent entries. if [[ -d $LOCATION ]];then for ENTRY in $(find $LOCATION -name '*.texi');do ENTRIES="$ENTRIES $ENTRY $(dirname $ENTRY)"