We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 178e2c0 commit b52688cCopy full SHA for b52688c
smithy-swift-codegen/src/main/kotlin/software/amazon/smithy/swift/codegen/ServiceNamespaceIntegration.kt
@@ -18,7 +18,7 @@ class ServiceNamespaceIntegration : SwiftIntegration {
18
) {
19
val service = ctx.settings.getService(ctx.model)
20
val namespaceName = service.nestedNamespaceType(ctx.symbolProvider)
21
- val filename = "${ctx.settings.moduleName}/Models/$namespaceName.swift"
+ val filename = "${ctx.settings.moduleName}/models/$namespaceName.swift"
22
delegator.useFileWriter(filename) { writer ->
23
writer.write("public enum \$L {}", namespaceName)
24
}
0 commit comments