From ee7240f70d94e978a8e4486de6fcc3a5008b7867 Mon Sep 17 00:00:00 2001 From: Alessandro Pasotti Date: Wed, 16 May 2018 11:03:18 +0200 Subject: [PATCH] Fix typo --- src/core/expression/qgsexpression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/expression/qgsexpression.cpp b/src/core/expression/qgsexpression.cpp index cef0e8c6759..476b29a1f98 100644 --- a/src/core/expression/qgsexpression.cpp +++ b/src/core/expression/qgsexpression.cpp @@ -782,7 +782,7 @@ void QgsExpression::initVariableHelp() //form context variable sVariableHelpTexts.insert( QStringLiteral( "current_geometry" ), QCoreApplication::translate( "current_geometry", "Represents the geometry of the feature currently being edited in the form or the table row. Can be used for in a form/row context to filter the related features." ) ); - sVariableHelpTexts.insert( QStringLiteral( "current_feature" ), QCoreApplication::translate( "current_feature", "Represents the feature currently being edited in the form or the table row. Can be used for in a form/row context to filter the related features." ) ); + sVariableHelpTexts.insert( QStringLiteral( "current_feature" ), QCoreApplication::translate( "current_feature", "Represents the feature currently being edited in the form or the table row. Can be used in a form/row context to filter the related features." ) ); } QString QgsExpression::variableHelpText( const QString &variableName )