Skip to content

Commit

Permalink
Fix typo in documentation (missing quote)
Browse files Browse the repository at this point in the history
  • Loading branch information
strk committed Dec 19, 2017
1 parent a44a598 commit 5308b26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/core/expression/qgsexpression.sip
Expand Up @@ -19,7 +19,7 @@ The expressions try to follow both syntax and semantics of SQL expressions.

Usage:
\code{.cpp}
QgsExpression exp("gid*2 > 10 and type not in ('D','F'));
QgsExpression exp("gid*2 > 10 and type not in ('D','F')");
if (exp.hasParserError())
{
// show error message with parserErrorString() and exit
Expand Down
2 changes: 1 addition & 1 deletion src/core/expression/qgsexpression.h
Expand Up @@ -51,7 +51,7 @@ The expressions try to follow both syntax and semantics of SQL expressions.
Usage:
\code{.cpp}
QgsExpression exp("gid*2 > 10 and type not in ('D','F'));
QgsExpression exp("gid*2 > 10 and type not in ('D','F')");
if (exp.hasParserError())
{
// show error message with parserErrorString() and exit
Expand Down

0 comments on commit 5308b26

Please sign in to comment.