Skip to content

Commit

Permalink
Update src/Kiota.Builder/Writers/TypeScript/TypeScriptConventionServi…
Browse files Browse the repository at this point in the history
…ce.cs
  • Loading branch information
baywet authored Nov 22, 2024
1 parent 542be57 commit 0d7aee2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ TYPE_TIME_ONLY or

private static bool IsPrimitiveTypeOrPrimitiveCollection(CodeType codeType, CodeComposedTypeBase codeComposedTypeBase) => IsPrimitiveType(codeType, codeComposedTypeBase, false);

private static Dictionary<string, string> InvalidCharactersReplacements = new() {
private static Dictionary<string, string> InvalidCharactersReplacements = new(StringComparer.OrdinalIgnoreCase) {
{ "\\", "/"},
{ "/*", "//*"}
};
Expand Down

0 comments on commit 0d7aee2

Please sign in to comment.