Skip to content

Commit

Permalink
Merge pull request #390 from wwalexander/mutable-document-info
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpolzin authored Jan 18, 2025
2 parents 5b5ee49 + f0e559d commit 749ceba
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Sources/OpenAPIKit/Document/DocumentInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ extension OpenAPI.Document {
///
/// See [OpenAPI Info Object](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#info-object).
public struct Info: Equatable, CodableVendorExtendable {
public let title: String
public let summary: String?
public let description: String?
public let termsOfService: URL?
public let contact: Contact?
public let license: License?
public let version: String
public var title: String
public var summary: String?
public var description: String?
public var termsOfService: URL?
public var contact: Contact?
public var license: License?
public var version: String

/// Dictionary of vendor extensions.
///
Expand Down

0 comments on commit 749ceba

Please sign in to comment.