Skip to content

Commit 8f9bb5d

Browse files
committed
Fix markings about future in manual, remove out-of-date marker.
1 parent d81a7ab commit 8f9bb5d

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

doc/rust.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ If you have suggestions to make, please try to focus them on *reductions* to
4141
the language: possible features that can be combined or omitted. We aim to
4242
keep the size and complexity of the language under control.
4343

44-
> **Note:** This manual is very out of date. The best source of Rust
45-
> documentation is currently the tutorial.
46-
4744
> **Note:** The grammar for Rust given in this document is rough and
4845
> very incomplete; only a modest number of sections have accompanying grammar
4946
> rules. Formalizing the grammar accepted by the Rust parser is ongoing work,
@@ -1370,10 +1367,8 @@ mod bar {
13701367
fn add(x: int, y: int) { x + y }
13711368
~~~~~~~~
13721369

1373-
In future versions of Rust, user-provided extensions to the compiler will be
1374-
able to interpret attributes. When this facility is provided, the compiler
1375-
will distinguish will be made between language-reserved and user-available
1376-
attributes.
1370+
> **Note:** In future versions of Rust, user-provided extensions to the compiler will be able to interpret attributes.
1371+
> When this facility is provided, the compiler will distinguish between language-reserved and user-available attributes.
13771372
13781373
At present, only the Rust compiler interprets attributes, so all attribute
13791374
names are effectively reserved. Some significant attributes include:
@@ -2938,8 +2933,8 @@ An example of a *receive*:
29382933
let s = comm::recv(po);
29392934
~~~~~~~~
29402935

2941-
Note: this communication system will be replaced by a higher-performance system called "pipes",
2942-
in future versions of Rust.
2936+
> **Note:** this communication system will be replaced by a higher-performance system called "pipes",
2937+
> in future versions of Rust.
29432938
29442939

29452940
# Runtime services, linkage and debugging
@@ -2951,7 +2946,7 @@ run-time. It is smaller and simpler than many modern language runtimes. It is
29512946
tightly integrated into the language's execution model of memory, tasks,
29522947
communication and logging.
29532948

2954-
Note: The runtime library will merge with the `core` library in future versions of Rust.
2949+
> **Note:** The runtime library will merge with the `core` library in future versions of Rust.
29552950
29562951
### Memory allocation
29572952

0 commit comments

Comments
 (0)