refactor: remove duplicate char_pairs entries

This commit is contained in:
CJ van den Berg 2025-03-06 17:11:03 +01:00
parent 3408751d11
commit e70972f357
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -42,18 +42,11 @@ pub const char_pairs = [_]struct { []const u8, []const u8 }{
.{ "\"", "\"" },
.{ "'", "'" },
.{ "(", ")" },
.{ "(", ")" },
.{ "[", "]" },
.{ "[", "]" },
.{ "{", "}" },
.{ "{", "}" },
.{ "", "" },
.{ "", "" },
.{ "", "" },
.{ "", "" },
.{ "", "" },
.{ "", "" },
.{ "«", "»" },
.{ "«", "»" },
};