Skip to content

Commit a08d36c

Browse files
committed
---
yaml --- r: 31093 b: refs/heads/incoming c: f5c3af1 h: refs/heads/master i: 31091: 37e7279 v: v3
1 parent 66e4117 commit a08d36c

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9-
refs/heads/incoming: 0e7571b0607ee3920a2d29eee35fdf9e7e92442c
9+
refs/heads/incoming: f5c3af1c1ab18632d2e8aa6c3a5fe369e670a471
1010
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/doc/tutorial-tasks.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ explore some typical patterns in concurrent Rust code, and finally
3636
discuss some of the more exotic synchronization types in the standard
3737
library.
3838

39+
> ***Warning:*** This tutorial is incomplete
40+
3941
## A note about the libraries
4042

4143
While Rust's type system provides the building blocks needed for safe
@@ -295,8 +297,6 @@ let result = ports.foldl(0, |accum, port| *accum + port.recv() );
295297
# fn some_expensive_computation(_i: uint) -> int { 42 }
296298
~~~
297299

298-
# TODO
299-
300300
# Handling task failure
301301

302302
Rust has a built-in mechanism for raising exceptions, written `fail`
@@ -451,13 +451,6 @@ fail;
451451
# };
452452
~~~
453453

454-
455-
# Unfinished notes
456-
457-
## Actor patterns
458-
459-
## Linearity, option dancing, owned closures
460-
461454
## Creating a task with a bi-directional communication path
462455

463456
A very common thing to do is to spawn a child task where the parent

0 commit comments

Comments
 (0)