Clarify tuples and Copy

Inspired by bshanks. Thanks!
This commit is contained in:
Carol (Nichols || Goulding) 2018-11-01 22:01:32 -04:00
parent 64935180af
commit eaedb71376
No known key found for this signature in database
GPG Key ID: D04B39A6CA243902
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ be sure, but as a general rule, any group of simple scalar values can be
* The Boolean type, `bool`, with values `true` and `false`.
* All the floating point types, such as `f64`.
* The character type, `char`.
* Tuples, but only if they contain types that are also `Copy`. For example,
* Tuples, if they only contain types that are also `Copy`. For example,
`(i32, i32)` is `Copy`, but `(i32, String)` is not.
### Ownership and Functions