doc: Fix broken doc test. rs=bustage

This commit is contained in:
Patrick Walton 2012-12-08 11:47:03 -08:00
parent 2c2398ca0d
commit eba4dadc54
1 changed files with 4 additions and 4 deletions

View File

@ -2201,7 +2201,7 @@ then a placeholder (`_`) represents the remaining fields.
# type options = {choose: bool, size: ~str};
# type player = {player: ~str, stats: (), options: options};
# fn load_stats() { }
# fn choose_player(r: player) { }
# fn choose_player(r: &player) { }
# fn next_player() { }
fn main() {
@ -2216,10 +2216,10 @@ fn main() {
match r {
{options: {choose: true, _}, _} => {
choose_player(r)
choose_player(&r)
}
{player: p, options: {size: ~"small", _}, _} => {
log(info, p + ~" is small");
{player: ref p, options: {size: ~"small", _}, _} => {
log(info, (copy *p) + ~" is small");
}
_ => {
next_player();