File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 27
27
# #####################################################################
28
28
DOCS := index intro tutorial complement-bugreport \
29
29
complement-lang-faq complement-design-faq complement-project-faq \
30
- rustdoc reference
30
+ rustdoc reference grammar
31
31
32
32
# Legacy guides, preserved for a while to reduce the number of 404s
33
33
DOCS += guide-crates guide-error-handling guide-ffi guide-macros guide \
Original file line number Diff line number Diff line change 1
- # ** This is a work in progress**
2
-
3
- % The Rust Grammar
1
+ % Grammar
4
2
5
3
# Introduction
6
4
Original file line number Diff line number Diff line change 5
5
This document is the primary reference for the Rust programming language. It
6
6
provides three kinds of material:
7
7
8
- - Chapters that formally define the language grammar and, for each
9
- construct, informally describe its semantics and give examples of its
10
- use.
8
+ - Chapters that informally describe each language construct and their use.
11
9
- Chapters that informally describe the memory model, concurrency model,
12
10
runtime services, linkage model and debugging facilities.
13
11
- Appendix chapters providing rationale and references to languages that
@@ -23,8 +21,11 @@ separately by extracting documentation attributes from their source code. Many
23
21
of the features that one might expect to be language features are library
24
22
features in Rust, so what you're looking for may be there, not here.
25
23
24
+ You may also be interested in the [ grammar] .
25
+
26
26
[ book ] : book/index.html
27
27
[ standard ] : std/index.html
28
+ [ grammar ] : grammar.html
28
29
29
30
# Notation
30
31
You can’t perform that action at this time.
0 commit comments