Skip to content

Commit

Permalink
reference: type definition -> type alias
Browse files Browse the repository at this point in the history
Fixes #9266
  • Loading branch information
steveklabnik committed Dec 11, 2014
1 parent c38e73f commit 38d2909
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/doc/reference.md
Expand Up @@ -1318,10 +1318,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.
Expand Down

0 comments on commit 38d2909

Please sign in to comment.