From 90205079d72c7bb7def1a8928d76b26ee02bcc5f Mon Sep 17 00:00:00 2001 From: Shadi Namrouti Date: Mon, 4 May 2020 05:17:03 +0300 Subject: [PATCH] docs(common): English grammar (#36908) In English grammar, the comma followed by a conjunction is considered incorrect. This kind of mistakes called comma splice. See: https://www.grammarly.com/blog/comma-splice/ PR Close #36908 --- packages/common/src/pipes/case_conversion_pipes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/common/src/pipes/case_conversion_pipes.ts b/packages/common/src/pipes/case_conversion_pipes.ts index 3f60d852e5..9abd0bb79c 100644 --- a/packages/common/src/pipes/case_conversion_pipes.ts +++ b/packages/common/src/pipes/case_conversion_pipes.ts @@ -52,7 +52,7 @@ const unicodeWordMatch = /** * Transforms text to title case. - * Capitalizes the first letter of each word, and transforms the + * Capitalizes the first letter of each word and transforms the * rest of the word to lower case. * Words are delimited by any whitespace character, such as a space, tab, or line-feed character. *