Skip to content

Commit

Permalink
Merge pull request rust-lang#12 from qres/patch-1
Browse files Browse the repository at this point in the history
fix tuple example in slides
  • Loading branch information
solson committed May 14, 2016
2 parents 3ba9237 + 42b4903 commit 51c5b63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tex/final-presentation/slides.tex
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@
bb0: {
var0 = arg0.0; // get the 1st part of the pair
var1 = arg0.1; // get the 2nd part of the pair
return = (var0, var1); // build a new pair in the result
return = (var1, var0); // build a new pair in the result
goto -> bb1;
}

Expand Down

0 comments on commit 51c5b63

Please sign in to comment.