Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

broken hash link (#) on integer types #93

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading