Skip to content

Commit 78f2fe4

Browse files
committed
More publicity
1 parent 1fa958a commit 78f2fe4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/Argument.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ public enum Argument {
22
case quoted(QuotedString)
33
case verbatim(String)
44

5-
init(quoted string: String) {
5+
public init(quoted string: String) {
66
self = .quoted(.init(string))
77
}
88

9-
init(verbatim string: String) {
9+
public init(verbatim string: String) {
1010
self = .verbatim(string)
1111
}
1212

13-
var string: String {
13+
public var string: String {
1414
switch self {
1515
case let .quoted(value):
1616
return value.quoted

0 commit comments

Comments
 (0)