Skip to content

Commit 63c0430

Browse files
committed
tutorial: Restructure intro materials
1 parent db8d9dd commit 63c0430

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

doc/tutorial.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,11 @@
66

77
This is a tutorial for the Rust programming language. It assumes the
88
reader is familiar with the basic concepts of programming, and has
9-
programmed in one or more other languages before. The tutorial covers
9+
programmed in one or more other languages before. It will often make
10+
comparisons to other languages in the C family. The tutorial covers
1011
the whole language, though not with the depth and precision of the
1112
[language reference](rust.html).
1213

13-
## Disclaimer
14-
15-
Rust is a language under development. The general flavor of the
16-
language has settled, but details will continue to change as it is
17-
further refined. Nothing in this tutorial is final, and though we try
18-
to keep it updated, it is possible that the text occasionally does not
19-
reflect the actual state of the language.
20-
2114
## First Impressions
2215

2316
Though syntax is something you get used to, an initial encounter with
@@ -58,6 +51,14 @@ fragments of programs that don't compile on their own. To try them
5851
out, you might have to wrap them in `fn main() { ... }`, and make sure
5952
they don't contain references to things that aren't actually defined.
6053

54+
## Disclaimer
55+
56+
Rust is a language under development. The general flavor of the
57+
language has settled, but details will continue to change as it is
58+
further refined. Nothing in this tutorial is final, and though we try
59+
to keep it updated, it is possible that the text occasionally does not
60+
reflect the actual state of the language.
61+
6162
# Getting started
6263

6364
## Installation

0 commit comments

Comments
 (0)