Skip to content
This repository was archived by the owner on Sep 19, 2024. It is now read-only.

Commit 1532503

Browse files
committed
Fix swift 3 upgrade of availability
1 parent cb3113e commit 1532503

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Library/Core/Validatable.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extension Validatable {
3131
/**
3232
Validates this entity and asserts if it encounters a invalid situation, a validatable should also validate it sub-validatables if it has any. In -O builds (the default for Xcode's Release configuration), validation is not evaluated, and there are no effects.
3333
*/
34-
@available(*, deprecated, message="Use validate() instead, preferably from a testcase.")
34+
@available(*, deprecated, message: "Use validate() instead, preferably from a testcase.")
3535
public static func assertValid() {
3636
assert( theRealAssert() )
3737
}

0 commit comments

Comments
 (0)