Skip to content

Commit 9e21df6

Browse files
committed
Fixed typo writing Local. instead of Model.
1 parent c4b3a96 commit 9e21df6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_mydocs/dax-style/dax-naming-conventions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ The naming conventions for DAX coding in reality involve many objects of the sem
8181
- For complex models with numerous model-dependent functions warranting categorization, `Local.` should serve as the initial segment of the prefix.
8282
- Examples:
8383
- `GetCustomerDiscount`
84-
- `Model.GetCustomerDiscount` if you prefer to make it more explicit that the function is model-dependent.
85-
- `Model.Checkout.GetCustomerDiscount` where Checkout is a prefix to group similar or related functions.
84+
- `Local.GetCustomerDiscount` if you prefer to make it more explicit that the function is model-dependent.
85+
- `Local.Checkout.GetCustomerDiscount` where Checkout is a prefix to group similar or related functions.
8686
- **Do not use** `Checkout.GetCustomerDiscount` because it would appear as a model-independent function.
8787

8888
- **Model-independent** functions must begin with a prefix indicating at least the containing library.

0 commit comments

Comments
 (0)