Skip to content

Commit 4cc1163

Browse files
committed
Run formatter
1 parent 64ed932 commit 4cc1163

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/unicode_guards.ex

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ defmodule Unicode.Guards do
153153
defguard is_printable(codepoint)
154154
when is_integer(codepoint) and match?(codepoint, "[[:printable:]]")
155155

156-
157156
@doc false
158157
# Replaced by `is_graph/1`.
159158
defguard is_visible(codepoint)
@@ -181,7 +180,6 @@ defmodule Unicode.Guards do
181180
defguard is_blank(codepoint)
182181
when is_integer(codepoint) and match?(codepoint, "[[:blank:]]")
183182

184-
185183
@doc """
186184
Guargs where a UTF8 codepoint is a printing character.
187185
@@ -191,5 +189,4 @@ defmodule Unicode.Guards do
191189
"""
192190
defguard is_print(codepoint)
193191
when is_integer(codepoint) and match?(codepoint, "[[:print:]]")
194-
195192
end

0 commit comments

Comments
 (0)