File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ pub struct CheeseVec {
28
28
}
29
29
```
30
30
31
- It will also generate the same functions that a ` Vec<Chees > ` would have, and a
31
+ It will also generate the same functions that a ` Vec<Cheese > ` would have, and a
32
32
few helper structs: ` CheeseSlice ` , ` CheeseSliceMut ` , ` CheeseRef ` and
33
33
` CheeseRefMut ` corresponding respectivly to ` &[Cheese] ` , ` &mut [Cheese] ` ,
34
34
` &Cheese ` and ` &mut Cheese ` .
35
35
36
- Any struct derived by StructOfArray will auto impl trait ` StructOfArray ` ,
37
- You can use ` <Cheese as StructOfArray>::Type ` instead of explicit named type ` CheeseVec ` ;
36
+ Any struct derived by StructOfArray will auto impl trait ` StructOfArray ` .
37
+ You can use ` <Cheese as StructOfArray>::Type ` instead of the explicitly named type ` CheeseVec ` .
38
38
39
39
## How to use it
40
40
You can’t perform that action at this time.
0 commit comments