Skip to content

Commit

Permalink
fix(QueryBuilder): Fix typo in docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
elpete committed Dec 20, 2019
1 parent 79b96c6 commit 97c8785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/Query/QueryBuilder.cfc
Expand Up @@ -1953,7 +1953,7 @@ component displayname="QueryBuilder" accessors="true" {
* This call must come after setting the query's table using `from` or `table`.
* Any constraining of the update query should be done using the appropriate WHERE statement before calling `update`.
*
* @id A convience argument for `where( "id", "=", arguments.id ). The query can be constrained by normal WHERE methods if you have more complex needs.
* @id A convenience argument for `where( "id", "=", arguments.id ). The query can be constrained by normal WHERE methods if you have more complex needs.
* @idColumnName The name of the id column for the delete shorthand. Default: "id".
* @options Any options to pass to `queryExecute`. Default: {}.
* @toSql If true, returns the raw sql string instead of running the query. Useful for debugging. Default: false.
Expand Down

0 comments on commit 97c8785

Please sign in to comment.