From f6097d1cb6980c687a7a838db6c272e86aec9b84 Mon Sep 17 00:00:00 2001 From: lee Date: Mon, 16 Sep 2019 12:07:15 +0100 Subject: [PATCH] correcting the rectangle readme --- subjects/rectangle.en.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/subjects/rectangle.en.md b/subjects/rectangle.en.md index 44b388083..aea0ef10d 100644 --- a/subjects/rectangle.en.md +++ b/subjects/rectangle.en.md @@ -12,10 +12,8 @@ is defined by the points of the upper left and lower right corners. - The struct `rectangle` has to have two variables, `upLeft` and `downRight` type `point`. - Our main task is to make a program that: - - - Given a slice of points of size `n` returns the smallest rectangle that contains all the points in the vector of points. The name of that function is `defineRectangle` - - - And calculates and prints the area of that rectangle you define. + - Given a slice of points of size `n` returns the smallest rectangle that contains all the points in the vector of points. The name of that function is `defineRectangle`. + - And calculates and prints the area of that rectangle you define. ### Expected main and function for the program