Skip to content

Commit d7496d2

Browse files
committed
Fix forgotten comma
Ooops, but easy enough to fix 😅
1 parent 49b9d07 commit d7496d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/faces.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Base.:(==)(a::Face, b::Face) =
172172

173173
Base.copy(f::Face) =
174174
Face(f.font, f.height, f.weight, f.slant,
175-
f.foreground, f.background, f.underline
175+
f.foreground, f.background, f.underline,
176176
f.strikethrough, f.inverse, copy(f.inherit))
177177

178178
function show(io::IO, ::MIME"text/plain", color::SimpleColor)

0 commit comments

Comments
 (0)