Skip to content

Commit

Permalink
lil code fix
Browse files Browse the repository at this point in the history
  • Loading branch information
halotukozak committed Jun 12, 2024
1 parent 186ecdc commit 73545e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/typography/Code.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package typography

import utils.nameOf

inline def codeMacro[L <: code](inline inner: L): String = "```" + nameOf[L] + "\n" + inner + "\n```"
inline def codeMacro[L <: code](inline inner: L): String = "```" + nameOf[L] + inner + "```"

type code <: String
type scala <: code
Expand Down

0 comments on commit 73545e0

Please sign in to comment.