Skip to content

Commit 3127c6c

Browse files
author
ecfan
committed
Fix anchor link
1 parent b6c99a2 commit 3127c6c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

articles/logic-apps/tutorial-process-email-attachments-workflow.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The following steps set up [Azure storage](../storage/common/storage-introductio
6262

6363
1. In the [Azure portal](https://portal.azure.com), sign in with your Azure account credentials.
6464

65-
1. [Follow these steps to create a storage account](../storage/common/storage-account-create.md#tabs=azure-portal) unless you already have one.
65+
1. [Follow these steps to create a storage account](../storage/common/storage-account-create.md?tabs=azure-portal) unless you already have one.
6666

6767
On the **Basics** tab, provide the following information:
6868

@@ -197,7 +197,11 @@ For more information, see [Create your first function in the Azure portal](../az
197197

198198
1. On the function app menu, select **Overview**. On the **Functions** tab, select **Create**.
199199

200-
1. On the **Create function** pane, select **HTTP trigger** > **Next**.
200+
1. On the **Create function** pane, select **HTTP trigger: C#** > **Next**.
201+
202+
> [!NOTE]
203+
>
204+
> If you don't see the C# version, make sure to
201205
202206
1. Provide the following information for your function, and select **Create**:
203207

@@ -217,7 +221,7 @@ For more information, see [Create your first function in the Azure portal](../az
217221
using Newtonsoft.Json;
218222
using System.Text.RegularExpressions;
219223

220-
public static async Task<IActionResult> Run(HttpRequest req, ILogger log)
224+
public static async Task<IActionResult> Run(HttpRequest req, ILogger log)
221225
{
222226
log.LogInformation("HttpWebhook triggered");
223227

@@ -230,7 +234,7 @@ For more information, see [Create your first function in the Azure portal](../az
230234
updatedBody = updatedBody.Replace(@"&nbsp;", " ");
231235

232236
// Return cleaned text
233-
return (ActionResult)new OkObjectResult(new { updatedBody });
237+
return (ActionResult)new OkObjectResult(new {updatedBody});
234238
}
235239
```
236240

0 commit comments

Comments
 (0)