docs(border_crosss) correct grammar

This commit is contained in:
davhojt 2022-06-13 00:43:37 +03:00 committed by Dav Hojt
parent bfe28c091b
commit 0bac09d1b4
1 changed files with 2 additions and 4 deletions

View File

@ -2,11 +2,9 @@
### Instructions
- Create the trait Vehicle with the model and year
At a border crossing, you want to keep a list of all the vehicles that are waiting to enter the country. You intend to keep a waiting list of the vehicles, but the vehicles can be one of two types: `Car` or `Truck`.
- In a border cross you want to keep a list of all the vehicles that are waiting to enter the country. You want to keep a waiting list of the vehicle but the vehicles can be of two types: Car or Truck
- Create a function that receives a vector of structures that implements the Vehicle trait and returns all the models.
Create a function that receives a vector of structures that implements the `Vehicle` trait, and returns all the models.
With the following structure: