Skip to content

Commit

Permalink
Also use unsigned integer instead of integer in transaction.
Browse files Browse the repository at this point in the history
  • Loading branch information
nikos-terzo committed Aug 27, 2024
1 parent 7f76864 commit 0bcf3d8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion book/src/concepts/what-is-a-transaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion book/src/move-basics/copy-ability.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion book/src/move-basics/drop-ability.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion book/src/move-basics/primitive-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion book/src/storage/store-ability.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 0bcf3d8

Please sign in to comment.