We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c22ea6e commit d1c1c62Copy full SHA for d1c1c62
lib/elixir/unicode/security.ex
@@ -147,7 +147,7 @@ defmodule String.Tokenizer.Security do
147
init = "'#{s}' includes right-to-left characters:\n"
148
149
init <>
150
- for codepoint <- s do
+ for codepoint <- s, into: "" do
151
hex = :io_lib.format(~c"~4.16.0B", [codepoint])
152
" \\u#{hex} #{[codepoint]} #{String.Tokenizer.dir(codepoint)}\n"
153
end
0 commit comments