Skip to content

Commit b52688c

Browse files
authored
Use 'models' with lowercase 'm' for directory name (#670)
1 parent 178e2c0 commit b52688c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smithy-swift-codegen/src/main/kotlin/software/amazon/smithy/swift/codegen/ServiceNamespaceIntegration.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ServiceNamespaceIntegration : SwiftIntegration {
1818
) {
1919
val service = ctx.settings.getService(ctx.model)
2020
val namespaceName = service.nestedNamespaceType(ctx.symbolProvider)
21-
val filename = "${ctx.settings.moduleName}/Models/$namespaceName.swift"
21+
val filename = "${ctx.settings.moduleName}/models/$namespaceName.swift"
2222
delegator.useFileWriter(filename) { writer ->
2323
writer.write("public enum \$L {}", namespaceName)
2424
}

0 commit comments

Comments
 (0)