From 88b07c0e40134c88e736c7c558c678859c4ca118 Mon Sep 17 00:00:00 2001 From: Mehrad Dev <81879565+Mehraddev@users.noreply.github.com> Date: Fri, 21 Nov 2025 11:13:02 +0330 Subject: [PATCH] fix grammar.md remove the extra s --- src/strings_ii/strip_extra_whitespace.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/strings_ii/strip_extra_whitespace.md b/src/strings_ii/strip_extra_whitespace.md index f50053d..5fd937a 100644 --- a/src/strings_ii/strip_extra_whitespace.md +++ b/src/strings_ii/strip_extra_whitespace.md @@ -1,6 +1,6 @@ # Strip extra whitespace -If you have a `String` which might contains some "trailing" whitespace or "leading" +If you have a `String` which might contain some "trailing" whitespace or "leading" whitespace, you can remove that by using the `.strip` method. This will give a new `String` with both the leading and trailing whitespace removed. @@ -36,4 +36,4 @@ void main() { } ``` -All of these methods are useful when you get input from human beings. Humans are generally pretty bad at seeing if they hit the spacebar one too many times. \ No newline at end of file +All of these methods are useful when you get input from human beings. Humans are generally pretty bad at seeing if they hit the spacebar one too many times.