diff --git a/src/custom_types/structs.md b/src/custom_types/structs.md index 251fda36bf..227a261fb5 100644 --- a/src/custom_types/structs.md +++ b/src/custom_types/structs.md @@ -3,8 +3,7 @@ There are three types of structures ("structs") that can be created using the `struct` keyword: -* Tuple structs, which are, basically, named tuples. -* The classic [C structs][c_struct] +* Tuple structs, which are, basically, named tuples. The classic [C structs][c_struct] * Unit structs, which are field-less, are useful for generics. ```rust,editable