Correct typos of "occurred" in warnings/errors

Change "occured" and "ocurred" to "occurred".
This commit is contained in:
Scott Kostyshak 2022-11-06 10:06:50 -05:00
parent 90ea508111
commit cbc3804a2f
3 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ EOF
function fail() { function fail() {
printf "An error occured: %s\n" "$*" printf "An error occurred: %s\n" "$*"
exit 1 exit 1
} }

View File

@ -99,7 +99,7 @@ print "\nControlfile\t= $patternsfile\n";
print "Log-file\t= $logfile\n\n"; print "Log-file\t= $logfile\n\n";
&readPatterns($patternsfile); &readPatterns($patternsfile);
if (&processLogFile($logfile) > 0) { if (&processLogFile($logfile) > 0) {
print "Errors occured, exiting\n"; print "Errors occurred, exiting\n";
exit(1); exit(1);
} }

View File

@ -701,7 +701,7 @@ class LyX_base:
try: try:
conv(self) conv(self)
except: except:
self.warning("An error ocurred in %s, %s" % self.warning("An error occurred in %s, %s" %
(version, str(conv)), (version, str(conv)),
default_debug__) default_debug__)
if not self.try_hard: if not self.try_hard: