occured -> occurred

This commit is contained in:
Semen Zhydenko 2018-02-04 17:20:34 +01:00
parent 22e0b5b399
commit bdde87d6af
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,7 @@ trap dbgtrap DEBUG # causes the trap code to be executed before every statement
trap - DEBUG # turn off the DEBUG trap
function returntrap {
echo "A return occured"
echo "A return occurred"
}
trap returntrap RETURN # is executed each time a shell function or a script executed with the . or source commands finishes executing