chore: use ' instead of brackets for quotes#4464
Conversation
nomeata
left a comment
There was a problem hiding this comment.
It's good to be consistent, but probably subjective which variant is clearer. I'd be curious what @david-christiansen will say.
Also, do we maybe use back ticks in some places as well?
|
Yeah, I wasn't sure about backticks vs single quotes. I went for normal quotes because they seem to be used more than backticks. I don't know of any difference in the meaning between the two. |
|
Mathlib CI status (docs):
|
|
Here both quotes are even used in the same error: lean4/src/lake/Lake/Load/Package.lean Line 31 in 0448e3f |
|
My impression, from looking at the lines of code in the diffs, is that single ticks are used to refer to a names and parentheses or backticks to quote expressions. Such semantic differentiation might actually be intended and useful, but then should be documented for the other developers so that we can apply them consistently. |
Me too. I feel like we are not using quotes and backticks consistently in error messages and doc-strings. I am also curious about what @david-christiansen will say. We should document the decision, and start enforcing from now on. |
Bracket used for quoting an expression, such as (C ...) in
have been replaced by 'C ...'. This makes the messages clearer.