mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
Fix typo in documentation (missing quote)
This commit is contained in:
parent
a44a598fa3
commit
5308b265db
@ -19,7 +19,7 @@ The expressions try to follow both syntax and semantics of SQL expressions.
|
|||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
\code{.cpp}
|
\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())
|
if (exp.hasParserError())
|
||||||
{
|
{
|
||||||
// show error message with parserErrorString() and exit
|
// show error message with parserErrorString() and exit
|
||||||
|
@ -51,7 +51,7 @@ The expressions try to follow both syntax and semantics of SQL expressions.
|
|||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
\code{.cpp}
|
\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())
|
if (exp.hasParserError())
|
||||||
{
|
{
|
||||||
// show error message with parserErrorString() and exit
|
// show error message with parserErrorString() and exit
|
||||||
|
Loading…
x
Reference in New Issue
Block a user