Fix typo: occured → occurred (#1435)

This commit is contained in:
Jon Dufresne 2020-04-26 05:09:56 -07:00 committed by GitHub
parent 3dcc5ca753
commit 6788869a40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3737,7 +3737,7 @@ class Calculation
} elseif (isset(self::$operators[$opCharacter]) && !$expectingOperator) { } elseif (isset(self::$operators[$opCharacter]) && !$expectingOperator) {
return $this->raiseFormulaError("Formula Error: Unexpected operator '$opCharacter'"); return $this->raiseFormulaError("Formula Error: Unexpected operator '$opCharacter'");
} else { // I don't even want to know what you did to get here } else { // I don't even want to know what you did to get here
return $this->raiseFormulaError('Formula Error: An unexpected error occured'); return $this->raiseFormulaError('Formula Error: An unexpected error occurred');
} }
// Test for end of formula string // Test for end of formula string
if ($index == strlen($formula)) { if ($index == strlen($formula)) {