Skip to content

Commit 2b31daf

Browse files
committed
---
yaml --- r: 209615 b: refs/heads/try c: 21e2e6e h: refs/heads/master i: 209613: 2d423c0 209611: cf5d547 209607: 9979500 209599: b2dfa58 v: v3
1 parent abc5660 commit 2b31daf

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 3e561f05c00cd180ec02db4ccab2840a4aba93d2
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: ba0e1cd8147d452c356aacb29fb87568ca26f111
5-
refs/heads/try: 806d0247831d3b5a89ce8962cbf3546a18470a99
5+
refs/heads/try: 21e2e6eec86e84eee765c91803f3488a21923a67
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/doc/reference.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1300,18 +1300,11 @@ contiguous stack segments like C.
13001300

13011301
A _type alias_ defines a new name for an existing [type](#types). Type
13021302
aliases are declared with the keyword `type`. Every value has a single,
1303-
specific type; the type-specified aspects of a value include:
1304-
1305-
* Whether the value is composed of sub-values or is indivisible.
1306-
* Whether the value represents textual or numerical information.
1307-
* Whether the value represents integral or floating-point information.
1308-
* The sequence of memory operations required to access the value.
1309-
* The [kind](#type-kinds) of the type.
1310-
1311-
For example, the type `(u8, u8)` defines the set of immutable values that are
1312-
composite pairs, each containing two unsigned 8-bit integers accessed by
1313-
pattern-matching and laid out in memory with the `x` component preceding the
1314-
`y` component:
1303+
specific type, but may implement several different traits, or be compatible with
1304+
several different type constraints.
1305+
1306+
For example, the following defines the type `Point` as a synonym for the type
1307+
`(u8, u8)`, the type of pairs of unsigned 8 bit integers.:
13151308

13161309
```
13171310
type Point = (u8, u8);

0 commit comments

Comments
 (0)