File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ public enum Argument {
22
22
23
23
24
24
extension String {
25
- var quoted : Argument { . init( quoted: self ) }
26
- var verbatim : Argument { . init( verbatim: self ) }
25
+ public var quoted : Argument { . init( quoted: self ) }
26
+ public var verbatim : Argument { . init( verbatim: self ) }
27
27
}
28
28
29
29
30
30
extension Array < String > {
31
- var quoted : [ Argument ] { map ( \. quoted) }
32
- var verbatim : [ Argument ] { map ( \. verbatim) }
31
+ public var quoted : [ Argument ] { map ( \. quoted) }
32
+ public var verbatim : [ Argument ] { map ( \. verbatim) }
33
33
}
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ extension SafeString: CustomStringConvertible {
22
22
23
23
24
24
extension String {
25
- var checked : SafeString {
25
+ public var checked : SafeString {
26
26
get throws { try . init( self ) }
27
27
}
28
- var unchecked : SafeString { . init( unchecked: self ) }
28
+ public var unchecked : SafeString { . init( unchecked: self ) }
29
29
}
You can’t perform that action at this time.
0 commit comments