Doc: edit customwizard plugin API docs

Use standard wording for class and function descriptions.
Edit for grammar and style.

Change-Id: Ia1872b044b4add0c7c057ed4495584bd2c91becf
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
Leena Miettinen
2013-09-09 11:01:04 +02:00
parent 83aad38cf6
commit 96eb2bf99b
5 changed files with 28 additions and 24 deletions

View File

@@ -260,9 +260,9 @@ bool PreprocessContext::process(const QString &in, QString *out, QString *errorM
}
/*!
\brief Custom wizard preprocessor based on JavaScript expressions.
Implements a custom wizard preprocessor based on JavaScript expressions.
Preprocess a string using simple syntax:
Preprocesses a string using a simple syntax:
\code
Text
@if <JavaScript-expression>
@@ -274,7 +274,7 @@ Blup
The JavaScript-expressions must evaluate to integers or boolean, like
\c '2 == 1 + 1', \c '"a" == "a"'. The variables of the custom wizard will be
expanded before, so , \c "%VAR%" should be used for strings and \c %VAR% for integers.
expanded before, so \c "%VAR%" should be used for strings and \c %VAR% for integers.
\sa ProjectExplorer::CustomWizard
*/