Skip to content

Commit 6fb6492

Browse files
author
ecfan
committed
Fix Acrolinx issues
1 parent fb13856 commit 6fb6492

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/logic-apps/add-run-csharp-scripts.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To perform custom integration tasks inline with your Standard workflow in Azure
2121

2222
This capability provides the following benefits:
2323

24-
- Write your own scripts to solve more complex integration problems without having to separately provision Azure Functions.
24+
- Write your own scripts to solve more complex integration problems without having to use Azure Functions.
2525

2626
This benefit streamlines workflow development plus reduces the complexity and cost with managing more services.
2727

@@ -41,7 +41,7 @@ This guide shows how to add the action in your workflow and add the C# script co
4141

4242
The following list describes some example scenarios where you can use a script helps with certain integration tasks:
4343

44-
- You have a payload where you want to parse and perform transformations or manipulations beyond built-in expressions and data operations capabilities. For example, you can use a script to return a modified schema for downstream processing.
44+
- Parse and perform transformations or manipulations on a payload beyond the built-in expressions and data operations capabilities. For example, you can use a script to return a modified schema for downstream processing.
4545

4646
- Manage Azure resources such as virtual machines and start or step them, based on some business logic.
4747

@@ -67,7 +67,7 @@ The following list describes some example scenarios where you can use a script h
6767

6868
| Name | Limit | Notes |
6969
|------|-------|-------|
70-
| Script run duration | 10 minutes | If you have scenarios that need longer durations, use the product feedback option to provide more information abour your needs. |
70+
| Script run duration | 10 minutes | If you have scenarios that need longer durations, use the product feedback option to provide more information about your needs. |
7171
| Output size | 100 MB | Output size depends on the output size limit for actions, which is generally 100 MB.
7272

7373
## Add the Execute CSharp Script Code action
@@ -179,7 +179,7 @@ The following list describes some example scenarios where you can use a script h
179179

180180
## Import namespaces
181181

182-
To import namespaces, do so with the **`using`** clause as usual. The following list includes an automatically imported namespaces, so they're optional for you to include in your script:
182+
To import namespaces, do so with the **`using`** clause as usual. The following list includes automatically imported namespaces, so they're optional for you to include in your script:
183183

184184
```text
185185
System
@@ -210,7 +210,7 @@ using Newtonsoft.Json.Linq;
210210
public static async Task<Results> Run(WorkflowContext context, ILogger log)
211211
```
212212

213-
The following list includes automatically assemblies that are add by the Azure Functions hosting environment:
213+
The following list includes assemblies automatically added by the Azure Functions hosting environment:
214214

215215
```text
216216
mscorlib
@@ -364,7 +364,7 @@ The following example shows a sample method call:
364364

365365
## Compilation errors
366366

367-
In this release, the web-based editor has limited IntelliSense support, which is still under improvement. Any compilation errors are detected when you save your workflow, and the Azure Logic Apps runtime compiles your script. These errors appear in your logic app's error logs.
367+
In this release, the web-based editor includes limited IntelliSense support, which is still under improvement. Any compilation errors are detected when you save your workflow, and the Azure Logic Apps runtime compiles your script. These errors appear in your logic app's error logs.
368368

369369
## Runtime errors
370370

@@ -374,7 +374,7 @@ If an error happens when your script executes, Azure Logic Apps performs these s
374374
- Marks the script action as **Failed**.
375375
- Provides an error object that represents the exception thrown from your script.
376376

377-
The followng example shows a sample error:
377+
The following example shows a sample error:
378378

379379
**The function 'CSharp_MyLogicApp-InvalidAction_execute_csharp_script_code.csx' failed with the error 'The action 'nonexistent' does not exist in the workflow.' when executing. Please verify function code is valid.**
380380

articles/logic-apps/add-run-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The following diagram shows the highlights from example workflow:
4242

4343
* The logic app workflow where you want to add your code snippet. The workflow must already start with a trigger.
4444

45-
This article's example uses the Office 365 Outlook trigger that's named **When a new email arrives**.
45+
This article's example uses the Office 365 Outlook trigger that is named **When a new email arrives**.
4646

4747
If you don't have a workflow, see the following documentation:
4848

0 commit comments

Comments
 (0)