Skip to content

Commit fe38b19

Browse files
committed
Tweak backticks
1 parent d8a79fd commit fe38b19

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Mathlib/Tactic/Abel.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ elab (name := abelNF) "abel_nf" tk:"!"? cfg:optConfig loc:(location)? : tactic =
506506
let loc := (loc.map expandLocation).getD (.targets #[] true)
507507
let s ← IO.mkRef {}
508508
let m := AtomM.recurse s cfg.toConfig (wellBehavedDischarge := true) evalExpr (cleanup cfg)
509-
transformAtLocation (m ·) "`abel_nf`" loc (ifUnchanged := .error) false
509+
transformAtLocation (m ·) "abel_nf" loc (ifUnchanged := .error) false
510510

511511
@[tactic_alt abel]
512512
macro "abel_nf!" cfg:optConfig loc:(location)? : tactic =>

Mathlib/Tactic/Push.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ elab (name := pull) "pull" disch?:(discharger)? head:(ppSpace colGt term) loc:(l
318318
let disch? ← disch?.mapM elabDischarger
319319
let head ← elabHead head
320320
let loc := (loc.map expandLocation).getD (.targets #[] true)
321-
transformAtLocation (pullCore head · disch?) "`pull`" loc (ifUnchanged := .error) false
321+
transformAtLocation (pullCore head · disch?) "pull" loc (ifUnchanged := .error) false
322322

323323
/-- A simproc variant of `push fun _ ↦ _`, to be used as `simp [↓pushFun]`. -/
324324
simproc_decl _root_.pushFun (fun _ ↦ ?_) := pushStep .lambda {}

Mathlib/Tactic/Ring/RingNF.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ elab (name := ringNF) "ring_nf" tk:"!"? cfg:optConfig loc:(location)? : tactic =
138138
let loc := (loc.map expandLocation).getD (.targets #[] true)
139139
let s ← IO.mkRef {}
140140
let m := AtomM.recurse s cfg.toConfig (wellBehavedDischarge := true) evalExpr (cleanup cfg)
141-
transformAtLocation (m ·) "`ring_nf`" loc cfg.ifUnchanged false
141+
transformAtLocation (m ·) "ring_nf" loc cfg.ifUnchanged false
142142

143143
@[tactic_alt ringNF] macro "ring_nf!" cfg:optConfig loc:(location)? : tactic =>
144144
`(tactic| ring_nf ! $cfg:optConfig $(loc)?)

0 commit comments

Comments
 (0)