From ef9cee5a317b360ab4b0f35355ccf6f97655db83 Mon Sep 17 00:00:00 2001 From: davhojt Date: Wed, 8 Jun 2022 19:02:33 +0300 Subject: [PATCH] docs(filter_table) correct grammar --- subjects/filter_table/README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/subjects/filter_table/README.md b/subjects/filter_table/README.md index 5b0128b09..09d09aa7c 100644 --- a/subjects/filter_table/README.md +++ b/subjects/filter_table/README.md @@ -2,14 +2,10 @@ ### Instructions -- Define the **functions**: - +- Define the associated functions for the `Table` struct: - `new`: which creates a new empty table. - - `add_rows`: which adds a new row to the table from a slice of strings. - - `filter_cols`: which receives a closure and returns a table with all the columns that yielded true when applying that closure. The closure will receive a `&str` and return a `bool` value. - - `filter_rows`: which receives a closure and returns a table with all the rows that yielded true when applied to the elements of the selected column. The closure will receive a `&str` and return a `bool` value. ### Expected functions and Structures