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

type correction and missing close quote #805

Merged
merged 1 commit into from
Sep 21, 2016
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 AstSemantics.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ The `br` and `br_if` constructs express low-level branching.
Branches may only reference labels defined by an outer *enclosing construct*,
which can be a `block` (with a label at the `end`), `loop` (with a label at the
beginning), `if` (with a label at the `end` or `else`), `else` (with a label at
the `end), or the function body (with a label at the `end`). This means that,
the `end`), or the function body (with a label at the `end`). This means that,
for example, references to a `block`'s label can only occur within the
`block`'s body.

Expand Down
2 changes: 1 addition & 1 deletion BinaryEncoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ invalidate a module.

| Field | Type | Description |
| ----- | ----- | ----- |
| id | `varint7` | section code |
| id | `varuint7` | section code |
| payload_len | `varuint32` | size of this section in bytes |
| name_len | `varuint32` ? | length of the section name in bytes, present if `id == 0` |
| name | `bytes` ? | section name string, present if `id == 0` |
Expand Down