Skip to content

Commit

Permalink
Update capitalization in XMLHeader.swift doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov authored Sep 14, 2020
1 parent b304e54 commit 7d1ea5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/XMLCoder/Auxiliaries/XMLHeader.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
import Foundation

public struct XMLHeader {
/// the XML standard that the produced document conforms to.
/// The XML standard that the produced document conforms to.
public let version: Double?

/// the encoding standard used to represent the characters in the produced document.
/// The encoding standard used to represent the characters in the produced document.
public let encoding: String?

/// indicates whether a document relies on information from an external source.
/// Indicates whether a document relies on information from an external source.
public let standalone: String?

public init(version: Double? = nil, encoding: String? = nil, standalone: String? = nil) {
Expand Down

0 comments on commit 7d1ea5d

Please sign in to comment.