You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: use backticks instead of single quotes for identifiers in messages
This PR standardizes the formatting of identifiers in error messages,
warnings, and diagnostics by using backticks instead of single quotes.
For example, `declaration uses 'sorry'` is now `declaration uses `sorry``.
This is a style improvement that makes code identifiers stand out better
in error messages and aligns with the convention used elsewhere in the
codebase where backticks are used for code formatting.
throwNamedError lean.dependsOnNoncomputable m!"failed to compile definition, consider marking it as 'noncomputable' because it depends on '{.ofConstName declName}', which is 'noncomputable'"
29
+
throwNamedError lean.dependsOnNoncomputable m!"failed to compile definition, consider marking it as `noncomputable` because it depends on '{.ofConstName declName}', which is `noncomputable`"
30
30
31
31
defcheckFVarUse (fvarId : FVarId) : ToMonoM Unit := do
32
32
iflet some declName := (← get).noncomputableVars.get? fvarId then
0 commit comments