From 3ec17aa73270c09e785a8e890347f92a66cbd0d7 Mon Sep 17 00:00:00 2001 From: Jan Chlebek Date: Sat, 23 Nov 2024 23:36:59 +0100 Subject: [PATCH] Update data-types.md Fixed typo in Power FX data types documentation - "SQL Serer" --- power-platform/power-fx/data-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/power-platform/power-fx/data-types.md b/power-platform/power-fx/data-types.md index 9fa73cf4ab..1077bd9b52 100644 --- a/power-platform/power-fx/data-types.md +++ b/power-platform/power-fx/data-types.md @@ -201,7 +201,7 @@ Power Fx supports two kinds of numbers: **Decimal** and **Float** (with synonyms ### Decimal numbers -The **Decimal** data type most often uses the [.NET decimal data type](xref:System.Decimal). Some hosts, such as Dataverse formula columns that are run in SQL Serer, use the SQL Server decimal data type. +The **Decimal** data type most often uses the [.NET decimal data type](xref:System.Decimal). Some hosts, such as Dataverse formula columns that are run in SQL Server, use the SQL Server decimal data type. **Decimal** does math the way you learned in school, using base 10 digits. That is very important to avoid rounding errors from very small differences that can accumulate when using base 2 math (as used by **Float**).