Skip to content

Commit faf01ac

Browse files
committed
fix
1 parent 172d178 commit faf01ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/FreeTypeExt.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ family_name(font::FTFont) = lowercase(ft_property(font, :family_name))
4545
style_name(font::FTFont) = lowercase(ft_property(font, :style_name))
4646
Base.propertynames(font::FTFont) = fieldnames(FT_FaceRec)
4747

48-
# C interop
48+
# c interoperability
4949
Base.cconvert(::Type{FT_Face}, font::FTFont) = font
5050
Base.unsafe_convert(::Type{FT_Face}, font::FTFont) = font.ft_ptr
5151

@@ -79,7 +79,7 @@ add_mono(fts...) = tuple(map(x -> x * "Mono", fts)..., fts...)
7979
fallback_fonts() =
8080
# those fallback fonts are likely to fail braille characters
8181
if Sys.islinux()
82-
add_mono("DejaVu Sans ", "Ubuntu ", "Noto ", "Free", "Liberation ") # NOTE: tailing space intended
82+
add_mono("DejaVu Sans ", "Ubuntu ", "Noto ", "Free", "Liberation ") # NOTE: trailing space intended
8383
elseif Sys.isbsd()
8484
("Courier New", "Helvetica")
8585
elseif Sys.iswindows()

0 commit comments

Comments
 (0)