reword tuples introduction (#42)
This commit is contained in:
parent
aecd6e6180
commit
bf1cdfdb5c
|
@ -52,7 +52,8 @@ let y = point.1;
|
|||
### Tuples
|
||||
|
||||
It's weird say that something is tuple-like when we haven't seen tuples yet!
|
||||
Tuples are Rust primitive types. They group together a fixed number of values with (potentially different) types:
|
||||
Tuples are another example of a primitive Rust type.
|
||||
They group together a fixed number of values with (potentially different) types:
|
||||
|
||||
```rust
|
||||
// Two values, same type
|
||||
|
|
Loading…
Reference in New Issue