Skip to content

Commit 52b475b

Browse files
Fixed invalid characters in function code
1 parent 2d798a4 commit 52b475b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

query-languages/m/understanding-power-query-m-functions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: "Learn more about: Understanding Power Query M functions"
33
title: "Understanding Power Query M functions"
44
ms.topic: conceptual
5-
ms.date: 11/14/2024
5+
ms.date: 2/14/2025
66
ms.custom: "nonautomated-date"
77
ms.subservice: m-background
88
---
@@ -68,10 +68,10 @@ in
6868

6969
**Each keyword**
7070

71-
The **each** keyword is used to easily create simple functions. `each ...` is syntactic sugar for a function signature that takes the `_` parameter `(_) => ...`.
71+
The **each** keyword is used to easily create simple functions. `each ...` is syntactic sugar for a function signature that takes the `_` parameter `(_) => ...`.
7272

7373
The **each** keyword is useful when combined with the lookup operator, which is applied by default to `_`.
74-
For example, `each [CustomerID]` is the same as `each _[CustomerID]`, which is the same as `(_) => _[CustomerID]`.
74+
For example, `each [CustomerID]` is the same as `each _[CustomerID]`, which is the same as `(_) => _[CustomerID]`.
7575

7676
**Example - Using each in table row filter**
7777

0 commit comments

Comments
 (0)