Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Update vm.md #1085

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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 language/documentation/spec/vm.md
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ Signature tokens examples:
* `u8, u128, A` where A is a struct -> `0x3 0x2 0x4 0x8 0x10` - size(`0x3`),
U8(`0x2`), u128(`0x4`), Struct::A
(`0x8 0x10` assuming the struct is in the `STRUCT_HANDLES` table at position `0x10`)
* `vector<address>, &A` where A is a struct -> `0x2 0xA 0x5 0x8 0x10` - size(`0x2`),
* `vector<address>, &A` where A is a struct -> `0x2 0xA 0x5 0x6 0x8 0x10` - size(`0x2`),
vector<address>(`0xA 0x5`), &Struct::A
(`0x6 0x8 0x10` assuming the struct is in the `STRUCT_HANDLES` table at position `0x10`)
* `vector<A>, &A<B>` where A and B are a struct ->
Expand Down
Loading