We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02ae210 + 224a8e7 commit 0326a39Copy full SHA for 0326a39
1 file changed
quickstart/struct-enum.md
@@ -20,7 +20,7 @@ let mut point = Point { x: 0, y: 0 };
20
// tuple structs
21
struct Color(u8, u8, u8);
22
let android_green = Color(0xa4, 0xc6, 0x39);
23
-let (red, green, blue) = android_green;
+let Color(red, green, blue) = android_green;
24
25
// A tuple struct’s constructors can be used as functions.
26
struct Digit(i32);
0 commit comments