Skip to content

Commit 0fd5236

Browse files
authored
Fix broken raw HTML (#2198)
1 parent 32835d1 commit 0fd5236

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: src/appendix/glossary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Term | Meaning
6969
<span id="rib">rib</span> | A data structure in the name resolver that keeps track of a single scope for names. ([see more](../name-resolution.md))
7070
<span id="rpit">RPIT</span> | A return-position `impl Trait`. ([see the reference](https://doc.rust-lang.org/reference/types/impl-trait.html#abstract-return-types)).
7171
<span id="rpitit">RPITIT</span> | A return-position `impl Trait` in trait. Unlike RPIT, this is desugared to a generic associated type (GAT). Introduced in [RFC 3425](https://rust-lang.github.io/rfcs/3425-return-position-impl-trait-in-traits.html). ([see more](../return-position-impl-trait-in-trait.md))
72-
<span id="scrutinee">scrutinee</div> | A scrutinee is the expression that is matched on in `match` expressions and similar pattern matching constructs. For example, in `match x { A => 1, B => 2 }`, the expression `x` is the scrutinee.
72+
<span id="scrutinee">scrutinee</span> | A scrutinee is the expression that is matched on in `match` expressions and similar pattern matching constructs. For example, in `match x { A => 1, B => 2 }`, the expression `x` is the scrutinee.
7373
<span id="sess">`sess`</span> | The compiler _session_, which stores global data used throughout compilation
7474
<span id="side-tables">side tables</span> | Because the [AST](#ast) and HIR are immutable once created, we often carry extra information about them in the form of hashtables, indexed by the id of a particular node.
7575
<span id="sigil">sigil</span> | Like a keyword but composed entirely of non-alphanumeric tokens. For example, `&` is a sigil for references.

Diff for: src/bug-fix-procedure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ that we use for unstable features:
227227
Ideally, breaking changes should have landed on the **stable branch** of the
228228
compiler before they are finalized.
229229

230-
<a id="guide">
230+
<a id="guide"></a>
231231

232232
### Removing a lint
233233

0 commit comments

Comments
 (0)