projects
/
rust_exercises.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aecd6e6
)
reword tuples introduction (#42)
author
Onè
<43485962+c-git@users.noreply.github.com>
Thu, 23 May 2024 12:29:55 +0000
(08:29 -0400)
committer
GitHub
<noreply@github.com>
Thu, 23 May 2024 12:29:55 +0000
(14:29 +0200)
book/src/05_ticket_v2/05_nullability.md
patch
|
blob
|
history
diff --git
a/book/src/05_ticket_v2/05_nullability.md
b/book/src/05_ticket_v2/05_nullability.md
index
92c5c8d
..
36895c2
100644
(file)
--- a/
book/src/05_ticket_v2/05_nullability.md
+++ b/
book/src/05_ticket_v2/05_nullability.md
@@
-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