diff --git a/fern/products/sdks/overview/swift/configuration.mdx b/fern/products/sdks/overview/swift/configuration.mdx
index e22056e44..50b4f0c1a 100644
--- a/fern/products/sdks/overview/swift/configuration.mdx
+++ b/fern/products/sdks/overview/swift/configuration.mdx
@@ -5,7 +5,7 @@ description: Configuration options for the Fern Swift SDK.
You can customize the behavior of the Swift SDK generator in `generators.yml`:
-```yaml {6-8} title="generators.yml"
+```yaml {6-9} title="generators.yml"
groups:
swift-sdk:
generators:
@@ -14,6 +14,7 @@ groups:
config:
clientClassName: YourClientName
environmentEnumName: YourCustomEnvironment
+ moduleName: MyCustomModule
```
## SDK Configuration Options
@@ -24,4 +25,8 @@ The name of the generated client class. This allows you to customize the class n
The name of the generated environment enum. This allows you to customize the enum name that defines your API environments (such as production, staging, development) and ensures consistent naming across SDK generations.
-
\ No newline at end of file
+
+
+
+The module name used in client code (e.g., `import MyCustomModule`). When provided, this name is used consistently across the library, product, and target.
+