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 1
1
---
2
- refs/heads/master: d26e2a9ce674150f06edc427edd3837a8950d374
2
+ refs/heads/master: bf82d689ce46875964be07abdf38f5268727c2aa
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5
5
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
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