File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9
- refs/heads/incoming: d26e2a9ce674150f06edc427edd3837a8950d374
9
+ refs/heads/incoming: bf82d689ce46875964be07abdf38f5268727c2aa
10
10
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ grammar as double-quoted strings. Other tokens have exact rules given.
200
200
The keywords in [ crate files] ( #crate-files ) are the following strings:
201
201
202
202
~~~~~~~~ {.keyword}
203
- export use mod
203
+ mod priv pub use
204
204
~~~~~~~~
205
205
206
206
The keywords in [ source files] ( #source-files ) are the following strings:
@@ -616,7 +616,7 @@ or a *configuration* in Mesa.] A crate file describes:
616
616
and copyright. These are used for linking, versioning and distributing
617
617
crates.
618
618
* The source-file and directory modules that make up the crate.
619
- * Any ` use ` , ` extern mod ` or ` export ` [ view items] ( #view-items ) that apply to
619
+ * Any ` use ` or ` extern mod ` [ view items] ( #view-items ) that apply to
620
620
the anonymous module at the top-level of the crate's module tree.
621
621
622
622
An example of a crate file:
@@ -764,7 +764,7 @@ mod math {
764
764
#### View items
765
765
766
766
~~~~~~~~ {.ebnf .gram}
767
- view_item : extern_mod_decl | use_decl | export_decl ;
767
+ view_item : extern_mod_decl | use_decl ;
768
768
~~~~~~~~
769
769
770
770
A view item manages the namespace of a module; it does not define new items
@@ -773,7 +773,6 @@ view item:
773
773
774
774
* [ extern mod declarations] ( #extern-mod-declarations )
775
775
* [ use declarations] ( #use-declarations )
776
- * [ export declarations] ( #export-declarations )
777
776
778
777
##### Extern mod declarations
779
778
You can’t perform that action at this time.
0 commit comments