Remove extra empty expressions
Only `class_table` values are not quoted and need to terminate %-= literal.
This commit is contained in:
parent
4e6946bda7
commit
3b7dd205a5
@ -213,19 +213,19 @@ module UnicodeNormalize # :nodoc:
|
|||||||
|
|
||||||
DECOMPOSITION_TABLE = {
|
DECOMPOSITION_TABLE = {
|
||||||
% decomposition_table.each do |key, value|
|
% decomposition_table.each do |key, value|
|
||||||
"<%=key.to_UTF8%>"=>"<%=value.to_UTF8%>"<%=%>,
|
"<%=key.to_UTF8%>"=>"<%=value.to_UTF8%>",
|
||||||
% end
|
% end
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|
||||||
KOMPATIBLE_TABLE = {
|
KOMPATIBLE_TABLE = {
|
||||||
% kompatible_table.each do |key, value|
|
% kompatible_table.each do |key, value|
|
||||||
"<%=key.to_UTF8%>"=>"<%=value.to_UTF8%>"<%=%>,
|
"<%=key.to_UTF8%>"=>"<%=value.to_UTF8%>",
|
||||||
% end
|
% end
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|
||||||
COMPOSITION_TABLE = {
|
COMPOSITION_TABLE = {
|
||||||
% composition_table.each do |key, value|
|
% composition_table.each do |key, value|
|
||||||
"<%=key.to_UTF8%>"=>"<%=value.to_UTF8%>"<%=%>,
|
"<%=key.to_UTF8%>"=>"<%=value.to_UTF8%>",
|
||||||
% end
|
% end
|
||||||
}.freeze
|
}.freeze
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user