From 7bfba0cc53c1fd3b8ba612ffafdb17b3e79e5ad6 Mon Sep 17 00:00:00 2001 From: Shahrokh Bahtooei <42028078+ShahrokhBahtooei@users.noreply.github.com> Date: Fri, 30 Oct 2020 13:09:12 +0330 Subject: [PATCH] Complete some comment sentence The verb "has" in a comment did not have an object. --- docs/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/functions.md b/docs/functions.md index f489c61..8b1b2da 100644 --- a/docs/functions.md +++ b/docs/functions.md @@ -267,7 +267,7 @@ def multiply_column_by_10(df, column_name): new = multiply_column_by_10(original, 'values') -original.head() # surprise! original dataframe is mutated and now it has +original.head() # surprise! original dataframe is mutated and now it has the column ``` **Good:**