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, diagnostics, and documentation to use backticks instead of single quotes. For example, `'sorry'` becomes `` `sorry` ``.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <[email protected]>
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