@@ -41,9 +41,6 @@ If you have suggestions to make, please try to focus them on *reductions* to
41
41
the language: possible features that can be combined or omitted. We aim to
42
42
keep the size and complexity of the language under control.
43
43
44
- > ** Note:** This manual is very out of date. The best source of Rust
45
- > documentation is currently the tutorial.
46
-
47
44
> ** Note:** The grammar for Rust given in this document is rough and
48
45
> very incomplete; only a modest number of sections have accompanying grammar
49
46
> rules. Formalizing the grammar accepted by the Rust parser is ongoing work,
@@ -1370,10 +1367,8 @@ mod bar {
1370
1367
fn add(x: int, y: int) { x + y }
1371
1368
~~~~~~~~
1372
1369
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.
1377
1372
1378
1373
At present, only the Rust compiler interprets attributes, so all attribute
1379
1374
names are effectively reserved. Some significant attributes include:
@@ -2938,8 +2933,8 @@ An example of a *receive*:
2938
2933
let s = comm::recv(po);
2939
2934
~~~~~~~~
2940
2935
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.
2943
2938
2944
2939
2945
2940
# Runtime services, linkage and debugging
@@ -2951,7 +2946,7 @@ run-time. It is smaller and simpler than many modern language runtimes. It is
2951
2946
tightly integrated into the language's execution model of memory, tasks,
2952
2947
communication and logging.
2953
2948
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.
2955
2950
2956
2951
### Memory allocation
2957
2952
0 commit comments