Skip to content

Commit

Permalink
Ensure service name is PascalCase
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Barber committed Sep 9, 2022
1 parent a10189f commit 32dc9b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ServerServiceGeneratorV2(
private val symbolProvider = coreCodegenContext.symbolProvider

private val service = coreCodegenContext.serviceShape
private val serviceName = service.id.name
private val serviceName = service.id.name.toPascalCase()
private val builderName = "${serviceName}Builder"

/** Calculate all `operationShape`s contained within the `ServiceShape`. */
Expand Down

0 comments on commit 32dc9b7

Please sign in to comment.