We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7749e3e commit 895282dCopy full SHA for 895282d
SQLite/Expression.swift
@@ -38,8 +38,8 @@ public struct Expression<T> {
38
///
39
/// :param: SQL An SQL string.
40
41
- /// :param: bindings Values to be bound to the given SQL.
42
- public init(literal SQL: String = "", _ bindings: [Binding?] = []) {
+ /// :param: bindings An optional list of values to be bound to the SQL.
+ public init(literal SQL: String, _ bindings: [Binding?] = []) {
43
(self.SQL, self.bindings) = (SQL, bindings)
44
}
45
0 commit comments