Skip to content

Commit 26079a1

Browse files
committed
Review docs under Nanoflows and other additions
1 parent 45a76ab commit 26079a1

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/microflows/error-handling-in-microflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ aliases:
99

1010
## Introduction
1111

12-
In a [microflow](/refguide/microflows/), microflow elements ([activities](/refguide/activities/), [decisions](/refguide/decisions/), or [loops](/refguide/loop/)) can sometimes fail and produce an error. If you do nothing, Mendix will report the error with a system error message and roll back all the changes. However, you can also change this behavior and handle errors yourself.
12+
In a [microflow](/refguide/microflows/), microflow elements ([activities](/refguide/activities/), [decisions](/refguide/decisions/), or [loops](/refguide/loop/)) can sometimes fail and produce an error. If you do nothing, Mendix reports the error with a system error message and roll back all the changes. However, you can also change this behavior and handle errors yourself.
1313

1414
This document introduces different error handling options in microflows and explains how they work using simple examples. An example of how combined custom error handling works is also given in [An Example of Combined Error Handling](#example).
1515

content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/microflows/microflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ URLs are not supported for microflows that have non-persistable entities or list
5656

5757
#### Name
5858

59-
**Name** is the internal name of the microflow. When referring to the microflow in the app you will use this name. It must be unique within the module, but you can have two microflows with the same name in different modules. When referring to the microflow, you will normally prepend the name of the module to ensure uniqueness and allow you to use microflows in other modules.
59+
**Name** is the internal name of the microflow. You use this name to refer to the microflow in the app. It must be unique within the module, but you can have two microflows with the same name in different modules. When referring to the microflow, you normally prepend the name of the module to ensure uniqueness and allow you to use microflows in other modules.
6060

6161
#### Export Level
6262

content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/nanoflows/nanoflow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Nanoflow properties consist of the following sections:
2121

2222
#### Return Type
2323

24-
The return type defines what information the nanoflow returns. The caller of the nanoflow will get a result of this type. For possible return types, see [Data Types](/refguide/data-types/).
24+
The return type defines what information the nanoflow returns. The caller of the nanoflow gets a result of this type. For information on possible return types, see [Data Types](/refguide/data-types/).
2525

2626
### Common Section {#common}
2727

2828
#### Name
2929

30-
**Name** is the internal name of the nanoflow. When referring to the nanoflow in the app you will use this name. It must be unique within the module, but you can have two nanoflows with the same name in different modules. When referring to the nanoflow, you will normally prepend the name of the module to ensure uniqueness and allow you to use nanoflows in other modules.
30+
**Name** is the internal name of the nanoflow. You use this name to refer to the nanoflow in the app. It must be unique within the module, but you can have two nanoflows with the same name in different modules. When referring to the nanoflow, you normally prepend the name of the module to ensure uniqueness and allow you to use nanoflows in other modules.
3131

3232
#### Documentation
3333

0 commit comments

Comments
 (0)