Skip to content

Commit 0aa36de

Browse files
authored
Merge pull request rust-lang#58 from Havvy/type-aliases
Minor fixes for type aliases
2 parents e793ca8 + 22a0f75 commit 0aa36de

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/items.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ There are several kinds of item:
1818
* [modules](#modules)
1919
* [function definitions](#functions)
2020
* [`extern` blocks](#external-blocks)
21-
* [type definitions](../grammar.html#type-definitions)
21+
* [type definitions](#type-aliases)
2222
* [struct definitions](#structs)
2323
* [enumeration definitions](#enumerations)
2424
* [constant items](#constant-items)
@@ -446,8 +446,7 @@ type Point = (u8, u8);
446446
let p: Point = (41, 68);
447447
```
448448

449-
Currently a type alias to an enum type cannot be used to qualify the
450-
constructors:
449+
A type alias to an enum type cannot be used to qualify the constructors:
451450

452451
```rust
453452
enum E { A }

0 commit comments

Comments
 (0)