Skip to content

Commit 51c5b63

Browse files
committed
Merge pull request rust-lang#12 from qres/patch-1
fix tuple example in slides
2 parents 3ba9237 + 42b4903 commit 51c5b63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tex/final-presentation/slides.tex

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@
391391
bb0: {
392392
var0 = arg0.0; // get the 1st part of the pair
393393
var1 = arg0.1; // get the 2nd part of the pair
394-
return = (var0, var1); // build a new pair in the result
394+
return = (var1, var0); // build a new pair in the result
395395
goto -> bb1;
396396
}
397397

0 commit comments

Comments
 (0)