Skip to content

Commit ad0ea97

Browse files
committed
cleanup
1 parent c74ddea commit ad0ea97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/SQLite/Typed/Expression.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ extension ExpressionType {
106106
" ".join([self, Expression<Void>(literal: "DESC")])
107107
}
108108

109-
public func alias(name:String) -> Expressible {
110-
return " ".join([self, Expression<Void>(literal: "AS \(name)")])
109+
public func alias(_ aliasName: String) -> Expressible {
110+
return " ".join([self, Expression<Void>(literal: "AS \(aliasName)")])
111111
}
112112
}
113113

0 commit comments

Comments
 (0)