-
Notifications
You must be signed in to change notification settings - Fork 52
Fix typos #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typos #42
Conversation
| * @param unknonw $expression the statement to be evaluated as true or false. | ||
| * @param unknown $true statement or value returned if $expression is true. | ||
| * @param unknown $false statement or value returned if $expression is false. | ||
| * @param mixed $expression the statement to be evaluated as true or false. | ||
| * @param mixed $true statement or value returned if $expression is true. | ||
| * @param mixed $false statement or value returned if $expression is false. | ||
| * | ||
| * @return unknown | ||
| * @return mixed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is no type called unknown.
| * If we are within a LIKE expression, we look for \_ and \%, the | ||
| * escaped LIKE wildcards, the ones where we want a literal, not a | ||
| * wildcard match. We change the \ escape for an ASCII \x1a (SUB) character, | ||
| * wildcard match. We change the \ escape for an ASCII \x1A (SUB) character, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hexadecimal digits are usually written with uppercase letters.
|
Thank you for working on this @szepeviktor! Merged 👍 |
|
Glad to contribute. |
Database configuration and migration
Found some misspellings with
typosand my eyes.