Skip to content

Commit 5308b26

Browse files
committed
Fix typo in documentation (missing quote)
1 parent a44a598 commit 5308b26

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

python/core/expression/qgsexpression.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The expressions try to follow both syntax and semantics of SQL expressions.
1919

2020
Usage:
2121
\code{.cpp}
22-
QgsExpression exp("gid*2 > 10 and type not in ('D','F'));
22+
QgsExpression exp("gid*2 > 10 and type not in ('D','F')");
2323
if (exp.hasParserError())
2424
{
2525
// show error message with parserErrorString() and exit

src/core/expression/qgsexpression.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The expressions try to follow both syntax and semantics of SQL expressions.
5151
5252
Usage:
5353
\code{.cpp}
54-
QgsExpression exp("gid*2 > 10 and type not in ('D','F'));
54+
QgsExpression exp("gid*2 > 10 and type not in ('D','F')");
5555
if (exp.hasParserError())
5656
{
5757
// show error message with parserErrorString() and exit

0 commit comments

Comments
 (0)