Skip to content

Commit 2ade133

Browse files
committed
Move availability check below doc comment
1 parent c57e76b commit 2ade133

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GRDB/QueryInterface/Schema/TableDefinition.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,10 @@ public struct TableOptions: OptionSet {
247247
/// See <https://www.sqlite.org/stricttables.html>
248248
public static let strict = TableOptions(rawValue: 1 << 3)
249249
#else
250-
@available(iOS 15.4, macOS 12.4, tvOS 15.4, watchOS 8.5, *) // SQLite 3.37+
251250
/// Creates a STRICT table
252251
///
253252
/// See <https://www.sqlite.org/stricttables.html>
253+
@available(iOS 15.4, macOS 12.4, tvOS 15.4, watchOS 8.5, *) // SQLite 3.37+
254254
public static let strict = TableOptions(rawValue: 1 << 3)
255255
#endif
256256
}

0 commit comments

Comments
 (0)