We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57d17ba commit 92971caCopy full SHA for 92971ca
TypedocConverter/Printer.fs
@@ -487,7 +487,7 @@ let printUnionTypeNewtonsoftJsonConverter (writer: System.IO.TextWriter) (unionT
487
let printUnionType (writer: System.IO.TextWriter) (config: Config) (references: string list) (unionType: string list) =
488
fprintfn writer "namespace TypedocConverter.GeneratedTypes"
489
fprintfn writer "{"
490
- references |> List.iter (fun x -> fprintfn writer " using %s;" x)
+ references |> List.iter (fun x -> fprintfn writer " using %s;" (toPascalCase x))
491
let name = getUnionTypeName unionType
492
let typeMark = if config.NrtDisabled then "" else "?"
493
if config.UseSystemJson then
0 commit comments