-
-
Notifications
You must be signed in to change notification settings - Fork 16
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 docs #136
Conversation
- `<=` means lesser or equal, so if `a <= 100`, this means that the entity map key `a` must be lesser or equals to `100`. | ||
- `>` means greater, so if `a > 100`, this means that the entity map key `a` must be greater than `100`. | ||
- `<` means lesser, so if `a < 100`, this means that the entity map key `a` must be lesser than `100`. | ||
- `==` means equals, so if `a == 100`, this means that the entity map key `a` must equal to `100`. |
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.
Again, equals is equivalent to the verb, so a must equals to x is correct, and I prefer. While this change was correct !=
means not equal, so if a != 100
because it refers to the mathematics operation.
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.
It shouldn't have the s
because the equality is being referred to the key, which is singular.
I think the equals
in the beginning of the sentence is the one that describes what you've said correctly, that's why it has the s
.
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.
but it is the subject and not the mathematical operation
I've reviewed the other chapters, tell me what do ya think π
Next pull request should be code only π¨βπ»