Skip to content

Commit

Permalink
bugfix forgotten ) character
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Sep 8, 2024
1 parent e695379 commit f869cbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/orm/query/querybuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1008,7 +1008,7 @@ Builder &Builder::orderBy(const Column &column, const QString &direction)
if (directionLower != ASC && directionLower != DESC)
throw Exceptions::InvalidArgumentError(
u"Order direction must be \"asc\" or \"desc\", case is not important "
"in %1().)"_s
"in %1()."_s
.arg(__tiny_func__));

m_orders.append({column, directionLower});
Expand Down

0 comments on commit f869cbd

Please sign in to comment.