Fix typo in documentation (missing quote)

This commit is contained in:
Sandro Santilli 2017-12-19 10:39:31 +01:00
parent a44a598fa3
commit 5308b265db
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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