Skip to content

Commit 000194b

Browse files
committed
Correct version number error.
1 parent 3a3598d commit 000194b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

content/en/docs/howto10/extensibility/best-practices-javascript-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ Explaining the callback code:
299299

300300
#### Understanding Promises
301301

302-
If you are using Mendix version 10.23 or below, you will need to use promises. A `Promise` object represents the eventual completion (or failure) of an asynchronous operation and its resulting value.
302+
If you are using Mendix version 10.22 or below, you will need to use promises. A `Promise` object represents the eventual completion (or failure) of an asynchronous operation and its resulting value.
303303

304304
Use the following code in Mendix versions 10.23 or below to wrap a callback API in a promise:
305305

content/en/docs/howto10/extensibility/build-javascript-actions/write-javascript-github.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: "This advanced how-to teaches you to make a JavaScript action which
1111
Nanoflows are even more powerful with pluggable nanoflow actions — called JavaScript actions. [How to Build JavaScript Actions: Part 1 (Basic)](/howto10/extensibility/write-javascript-actions/) shows you how to create a JavaScript TextToSpeech action, expose it as a nanoflow action, and then use it in a demo. In this advanced how-to you will learn to call a REST service, use a generic return type, and make an API to enhance the power of your JavaScript actions.
1212

1313
{{% alert color="warning" %}}
14-
The code on this page assumes you are using Mendix version 10.23.0 or above, the LTS version of Mendix 10. If you are using a previous version, you can refer to the code in the Mendix 9 version of [Build JavaScript Actions: Part 2 (Advanced)](/howto9/extensibility/write-javascript-github/).
14+
The code on this page assumes you are using Mendix version 10.23.0 or above. If you are using a previous version, you can refer to the code in the Mendix 9 version of [Build JavaScript Actions: Part 2 (Advanced)](/howto9/extensibility/write-javascript-github/).
1515
{{% /alert %}}
1616

1717
This how-to teaches you how to do the following:

0 commit comments

Comments
 (0)