diff --git a/book/src/concepts/what-is-a-transaction.md b/book/src/concepts/what-is-a-transaction.md index 6439a8b1..50bbc585 100644 --- a/book/src/concepts/what-is-a-transaction.md +++ b/book/src/concepts/what-is-a-transaction.md @@ -35,7 +35,7 @@ Transaction inputs are the arguments for the transaction and are split between 2 - Pure arguments: These are mostly [primitive types](../move-basics/primitive-types.html) with some extra additions. A pure argument can be: - [`bool`](../move-basics/primitive-types.html#booleans). - - [integer](../move-basics/primitive-types.html#integers) (`u8`, `u16`, `u32`, `u64`, `u128`, `u256`). + - [unsigned integer](../move-basics/primitive-types.html#integer-types) (`u8`, `u16`, `u32`, `u64`, `u128`, `u256`). - [`address`](../move-basics/address.html). - [`std::string::String`](../move-basics/string.html), UTF8 strings. - [`std::ascii::String`](../move-basics/string.html#ascii-strings), ASCII strings. diff --git a/book/src/move-basics/copy-ability.md b/book/src/move-basics/copy-ability.md index f6216143..9074f73a 100644 --- a/book/src/move-basics/copy-ability.md +++ b/book/src/move-basics/copy-ability.md @@ -42,7 +42,7 @@ for them. All native types in Move have the `copy` ability. This includes: - [bool](./../move-basics/primitive-types.md#booleans) -- [unsigned integers](./../move-basics/primitive-types.md#integers) +- [unsigned integers](./../move-basics/primitive-types.md#integer-types) - [vector](./../move-basics/vector.md) - [address](./../move-basics/address.md) diff --git a/book/src/move-basics/drop-ability.md b/book/src/move-basics/drop-ability.md index b5f01aae..ffe9f9c9 100644 --- a/book/src/move-basics/drop-ability.md +++ b/book/src/move-basics/drop-ability.md @@ -64,7 +64,7 @@ section. All native types in Move have the `drop` ability. This includes: - [bool](./../move-basics/primitive-types.md#booleans) -- [unsigned integers](./../move-basics/primitive-types.md#integers) +- [unsigned integers](./../move-basics/primitive-types.md#integer-types) - [vector](./../move-basics/vector.md) - [address](./../move-basics/address.md) diff --git a/book/src/move-basics/primitive-types.md b/book/src/move-basics/primitive-types.md index b20a9cfa..a49a78cd 100644 --- a/book/src/move-basics/primitive-types.md +++ b/book/src/move-basics/primitive-types.md @@ -6,7 +6,7 @@ For simple values, Move has a number of built-in primitive types. They're the ba other types. The primitive types are: - [Booleans](#booleans) -- [Unsigned Integers](#integers) +- [Unsigned Integers](#integer-types) - [Address](./address.md) - covered in the next section However, before we get to the types, let's first look at how to declare and assign variables in diff --git a/book/src/storage/store-ability.md b/book/src/storage/store-ability.md index 1a1edf2b..f4b0fdea 100644 --- a/book/src/storage/store-ability.md +++ b/book/src/storage/store-ability.md @@ -40,7 +40,7 @@ public struct MegaConfig has key { All native types (except for references) in Move have the `store` ability. This includes: - [bool](./../move-basics/primitive-types.md#booleans) -- [unsigned integers](./../move-basics/primitive-types.md#integers) +- [unsigned integers](./../move-basics/primitive-types.md#integer-types) - [vector](./../move-basics/vector.md) - [address](./../move-basics/address.md)