Skip to content

Commit 0f77d18

Browse files
committed
---
yaml --- r: 46557 b: refs/heads/auto c: df48147 h: refs/heads/master i: 46555: 4e464c8 v: v3
1 parent 0651d8d commit 0f77d18

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
@@ -14,4 +14,4 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: 681e6dd40d5882465f74eebf2f1802c76b0df063
17+
refs/heads/auto: df481473dae024e522afd669646fa779d97c5e2d

branches/auto/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/auto/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/auto/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)