Skip to content

Commit 749ceba

Browse files
authored
Merge pull request #390 from wwalexander/mutable-document-info
2 parents 5b5ee49 + f0e559d commit 749ceba

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Sources/OpenAPIKit/Document/DocumentInfo.swift

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ extension OpenAPI.Document {
1313
///
1414
/// See [OpenAPI Info Object](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#info-object).
1515
public struct Info: Equatable, CodableVendorExtendable {
16-
public let title: String
17-
public let summary: String?
18-
public let description: String?
19-
public let termsOfService: URL?
20-
public let contact: Contact?
21-
public let license: License?
22-
public let version: String
16+
public var title: String
17+
public var summary: String?
18+
public var description: String?
19+
public var termsOfService: URL?
20+
public var contact: Contact?
21+
public var license: License?
22+
public var version: String
2323

2424
/// Dictionary of vendor extensions.
2525
///

0 commit comments

Comments
 (0)