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**).