From fe35bdc3baf59474d6eb3b9c37ff10d3ae51ad91 Mon Sep 17 00:00:00 2001 From: pramitgaha <92291717+pramitgaha@users.noreply.github.com> Date: Mon, 7 Feb 2022 23:32:39 +0545 Subject: [PATCH] Update built_in_types.md --- docs/src/basics/built_in_types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/basics/built_in_types.md b/docs/src/basics/built_in_types.md index 63788bcd70b..bb106a1c96d 100644 --- a/docs/src/basics/built_in_types.md +++ b/docs/src/basics/built_in_types.md @@ -30,7 +30,7 @@ Numbers can be declared with binary syntax, hexadecimal syntax, base-10 syntax, 10 // base-10 100_000 // underscore delineated base-10 0x1111_0000 // underscore delineated binary -0xfff_aaa // underscore delineated binary +0xfff_aaa // underscore delineated hexadecimal ``` The default numeric type is `u64`. The FuelVM's word size is 64 bits, and the cases where using a smaller numeric type saves space are minimal.