diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-08-31 11:12:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 11:12:34 +0200 |
commit | a276e6fc363e1ad49a46f18c84c7fb8c30070037 (patch) | |
tree | 714b66678cbcc65acdc1573d3e17b1dfadeb1646 /doc/classes | |
parent | db5ea78b7bf85ddd9109fa4ac03a7178d446cb58 (diff) | |
parent | d5ffa42cd2420bdaa31d467e8e6e68b41133a038 (diff) |
Merge pull request #40955 from Calinou/test-add-expression
Add a test suite for Expression
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Expression.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Expression.xml b/doc/classes/Expression.xml index fcd1aa43c0..f2611dc850 100644 --- a/doc/classes/Expression.xml +++ b/doc/classes/Expression.xml @@ -5,7 +5,7 @@ </brief_description> <description> An expression can be made of any arithmetic operation, built-in math function call, method call of a passed instance, or built-in type construction call. - An example expression text using the built-in math functions could be [code]sqrt(pow(3,2) + pow(4,2))[/code]. + An example expression text using the built-in math functions could be [code]sqrt(pow(3, 2) + pow(4, 2))[/code]. In the following example we use a [LineEdit] node to write our expression and show the result. [codeblock] onready var expression = Expression.new() |