Skip to content

Commit a6db7a2

Browse files
authored
Merge pull request #1852 from DerSaidin/patch-1
Fix typos.
2 parents 50d603d + a0e4255 commit a6db7a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

text/1211-mir.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ this, we desugar an array reference like `y = arr[x]` as follows:
495495
}
496496

497497
B1: {
498-
x = arr[idx]
498+
y = arr[idx]
499499
...
500500
}
501501

@@ -519,7 +519,7 @@ intrinsics. These operators yield a tuple of (result, overflow), so
519519

520520
B0: {
521521
tmp = left + right;
522-
if(tmp.1, B1, B2)
522+
if(tmp.1, B2, B1)
523523
}
524524

525525
B1: {

0 commit comments

Comments
 (0)