diff --git a/docs/docs/noir/concepts/data_types/integers.md b/docs/docs/noir/concepts/data_types/integers.md index ff3fafa1f90..f1639fb7818 100644 --- a/docs/docs/noir/concepts/data_types/integers.md +++ b/docs/docs/noir/concepts/data_types/integers.md @@ -7,13 +7,13 @@ sidebar_position: 1 An integer type is a range constrained field type. The Noir frontend supports both unsigned and signed integer types. -The allowed sizes are 1, 8, 16, 32 and 64 bits. +The allowed sizes are 1, 8, 16, 32, 64 and 128 bits. ([currently only unsigned integers for 128 bits](https://github.com/noir-lang/noir/issues/7591)) :::info When an integer is defined in Noir without a specific type, it will default to `Field`. -The one exception is for loop indices which default to `u64` since comparisons on `Field`s are not possible. +The one exception is for loop indices which default to `u32` since comparisons on `Field`s are not possible. :::