@@ -33,31 +33,31 @@ public struct Expression<T> {
33
33
34
34
private var original : Expressible ?
35
35
36
- /// Builds a SQL expression with a literal string and an optional list of
36
+ /// Builds an SQL expression with a literal string and an optional list of
37
37
/// bindings.
38
38
///
39
- /// :param: SQL A SQL string.
39
+ /// :param: SQL An SQL string.
40
40
///
41
41
/// :param: bindings Values to be bound to the given SQL.
42
42
public init ( literal SQL: String = " " , _ bindings: [ Binding ? ] = [ ] ) {
43
43
( self . SQL, self . bindings) = ( SQL, bindings)
44
44
}
45
45
46
- /// Builds a SQL expression with a quoted identifier.
46
+ /// Builds an SQL expression with a quoted identifier.
47
47
///
48
- /// :param: identifier A SQL identifier (*e.g.*, a column name).
48
+ /// :param: identifier An SQL identifier (*e.g.*, a column name).
49
49
public init ( _ identifier: String ) {
50
50
self . init ( literal: quote ( identifier: identifier) )
51
51
}
52
52
53
- /// Builds a SQL expression with the given value.
53
+ /// Builds an SQL expression with the given value.
54
54
///
55
55
/// :param: value An encodable SQL value.
56
56
public init < V: Value > ( value: V ? ) {
57
57
self . init ( binding: value? . datatypeValue)
58
58
}
59
59
60
- /// Builds a SQL expression with the given value.
60
+ /// Builds an SQL expression with the given value.
61
61
///
62
62
/// :param: binding A raw SQL value.
63
63
internal init ( binding: Binding ? ) {
0 commit comments