File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
branches/auto/src/doc/book Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
8
8
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
9
9
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
10
10
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11
- refs/heads/auto: bbba872dde00b7947e75c6055dba5c82f2f7978a
11
+ refs/heads/auto: 708c5d09d7a355c506960581e16306c96eb7d019
12
12
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
13
13
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
14
14
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1
Original file line number Diff line number Diff line change @@ -470,7 +470,7 @@ which syntactic form it matches.
470
470
* ` ty ` : a type. Examples: ` i32 ` ; ` Vec<(char, String)> ` ; ` &T ` .
471
471
* ` pat ` : a pattern. Examples: ` Some(t) ` ; ` (17, 'a') ` ; ` _ ` .
472
472
* ` stmt ` : a single statement. Example: ` let x = 3 ` .
473
- * ` block ` : a brace-delimited sequence of statements and optional an expression. Example:
473
+ * ` block ` : a brace-delimited sequence of statements and optionally an expression. Example:
474
474
` { log(error, "hi"); return 12; } ` .
475
475
* ` item ` : an [ item] [ item ] . Examples: ` fn foo() { } ` ; ` struct Bar; ` .
476
476
* ` meta ` : a "meta item", as found in attributes. Example: ` cfg(target_os = "windows") ` .
@@ -509,7 +509,7 @@ A macro defined within the body of a single `fn`, or anywhere else not at
509
509
module scope, is visible only within that item.
510
510
511
511
If a module has the ` macro_use ` attribute, its macros are also visible in its
512
- parent module after its ` mod ` item. If the parent also has ` macro_use `
512
+ parent module after the child’s ` mod ` item. If the parent also has ` macro_use `
513
513
then the macros will be visible in the grandparent after the parent’s ` mod `
514
514
item, and so forth.
515
515
You can’t perform that action at this time.
0 commit comments