From 0bac09d1b460d9d01b0f8f909036f880ffffb763 Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 13 Jun 2022 00:43:37 +0300 Subject: [PATCH] docs(border_crosss) correct grammar --- subjects/border_cross/README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/subjects/border_cross/README.md b/subjects/border_cross/README.md index d7d7e3b7..eda6c4fd 100644 --- a/subjects/border_cross/README.md +++ b/subjects/border_cross/README.md @@ -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: