rollup merge of #19746: steveklabnik/gh9266

Fixes #9266
This commit is contained in:
Brian Anderson 2014-12-13 18:22:44 -08:00
commit 8404ea66d9

View File

@ -1317,10 +1317,10 @@ let fptr: extern "C" fn() -> int = new_int;
Extern functions may be called directly from Rust code as Rust uses large,
contiguous stack segments like C.
### Type definitions
### Type aliases
A _type definition_ defines a new name for an existing [type](#types). Type
definitions are declared with the keyword `type`. Every value has a single,
A _type alias_ defines a new name for an existing [type](#types). Type
aliases are declared with the keyword `type`. Every value has a single,
specific type; the type-specified aspects of a value include:
* Whether the value is composed of sub-values or is indivisible.