Simplify wording & fix test src/doc

This commit is contained in:
Son 2017-02-03 23:51:50 +11:00
parent c4cd4e19d9
commit 4ddb56bf4d
2 changed files with 10 additions and 5 deletions

View file

@ -117,9 +117,9 @@ fn main() {
}
```
We can initializing a data structure (struct, enum, union) with named fields,
by writing `fieldname` as a shorthand for `fieldname: fieldname`. This allows a
compact syntax for initialization, with less duplication:
Initialization of a data structure (struct, enum, union) can be simplified if
fields of the data structure are initialized with variables which has same
names as the fields.
```
#![feature(field_init_shorthand)]

View file

@ -2770,8 +2770,13 @@ shorthand for `field: field`.
Example:
```
let a = SomeStruct { field1, field2: expression, field3 };
let b = SomeStruct { field1: field1, field2: expression, field3: field3 };
# #![feature(field_init_shorthand)]
# struct Point3d { x: i32, y: i32, z: i32 }
# let x = 0;
# let y_value = 0;
# let z = 0;
Point3d { x: x, y: y_value, z: z };
Point3d { x, y: y_value, z };
```
### Block expressions