-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Capitalized error messages #3956
Capitalized error messages #3956
Conversation
a199c95
to
af00b80
Compare
Note that capitalizing error message given by the compiler is not correct. Right now with this code: def foo
A = 1
end we get this error:
With your PR we get:
which doesn't read that well (capitalizing after ":" doesn't look good). Compiler message are always non-capitalized because of this reason (check for example errors produced by I do agree about capitalizing messages of exceptions thrown in the standard library. |
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.
Please don't capitalize error messages produced inside the compiler's source code. Doing it for error messages inside the standard library is OK, though.
791699a
to
b81021b
Compare
@asterite Reverted changes made to compiler as requested. |
b81021b
to
ba848dd
Compare
@asterite ping? it's ready to 🚢 ! |
ba848dd
to
bb38e5d
Compare
bb38e5d
to
76de6a9
Compare
@asterite anything more to do here? |
This PR changes error messages according to #3944.