Skip to content

Commit 1e977b3

Browse files
committed
Make a static property private explicitly
1 parent 7fe920d commit 1e977b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/Task.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public struct Task {
4747
}
4848

4949
private extension String {
50-
static let whitespaceRegularExpression = try! NSRegularExpression(pattern: "\\s")
50+
private static let whitespaceRegularExpression = try! NSRegularExpression(pattern: "\\s")
5151

5252
var escaped: String {
5353
return String.whitespaceRegularExpression.stringByReplacingMatches(

0 commit comments

Comments
 (0)