Skip to content

Commit d9aa662

Browse files
committed
---
yaml --- r: 44317 b: refs/heads/snap-stage3 c: df48147 h: refs/heads/master i: 44315: f94f4e2 v: v3
1 parent c996d3b commit d9aa662

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 19dfec2aaf746535de1521f68421f9980dbf25de
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 681e6dd40d5882465f74eebf2f1802c76b0df063
4+
refs/heads/snap-stage3: df481473dae024e522afd669646fa779d97c5e2d
55
refs/heads/try: ef355f6332f83371e4acf04fc4eb940ab41d78d3
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/doc/rust.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1611,7 +1611,6 @@ The following are examples of structure expressions:
16111611
# struct Point { x: float, y: float }
16121612
# struct TuplePoint(float, float);
16131613
# mod game { pub struct User { name: &str, age: uint, score: uint } }
1614-
# use game;
16151614
Point {x: 10f, y: 20f};
16161615
TuplePoint(10f, 20f);
16171616
let u = game::User {name: "Joe", age: 35u, score: 100_000};

branches/snap-stage3/doc/tutorial-tasks.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,6 @@ Here is the function that implements the child task:
468468

469469
~~~~
470470
# use std::comm::DuplexStream;
471-
# use comm::{Port, Chan};
472471
fn stringifier(channel: &DuplexStream<~str, uint>) {
473472
let mut value: uint;
474473
loop {
@@ -491,7 +490,6 @@ Here is the code for the parent task:
491490

492491
~~~~
493492
# use std::comm::DuplexStream;
494-
# use comm::{Port, Chan};
495493
# use task::spawn;
496494
# fn stringifier(channel: &DuplexStream<~str, uint>) {
497495
# let mut value: uint;

branches/snap-stage3/doc/tutorial.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2270,7 +2270,9 @@ fn chicken_farmer() {
22702270
// The same, but name it `my_chicken`
22712271
use my_chicken = farm::chicken;
22722272
...
2273+
# my_chicken();
22732274
}
2275+
# chicken();
22742276
# }
22752277
~~~
22762278

0 commit comments

Comments
 (0)