Skip to content

Commit 3a5a38f

Browse files
committed
missing word: "block"
1 parent 10bd0a5 commit 3a5a38f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/background.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ A control-flow graph is structured as a set of **basic blocks**
1717
connected by edges. The key idea of a basic block is that it is a set
1818
of statements that execute "together" -- that is, whenever you branch
1919
to a basic block, you start at the first statement and then execute
20-
all the remainder. Only at the end of the is there the possibility of
21-
branching to more than one place (in MIR, we call that final statement
22-
the **terminator**):
20+
all the remainder. Only at the end of the block is there the
21+
possibility of branching to more than one place (in MIR, we call that
22+
final statement the **terminator**):
2323

2424
```
2525
bb0: {

0 commit comments

Comments
 (0)