From e93f93bcad6bd91a490571cf269e543c7fb26d21 Mon Sep 17 00:00:00 2001 From: Mrabetto <107363465+Mrabetto@users.noreply.github.com> Date: Sun, 16 Oct 2022 00:41:52 +0100 Subject: [PATCH] Corrected spelling 'that a human BEING' instead of 'that a human begin' --- .../12_day_regular_expressions.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/12_Day_Regular_expressions/12_day_regular_expressions.md b/12_Day_Regular_expressions/12_day_regular_expressions.md index ef83882..272e147 100644 --- a/12_Day_Regular_expressions/12_day_regular_expressions.md +++ b/12_Day_Regular_expressions/12_day_regular_expressions.md @@ -168,7 +168,7 @@ console.log(result) *replace()*: Executes a search for a match in a string, and replaces the matched substring with a replacement substring. ```js -const txt = 'Python is the most beautiful language that a human begin has ever created.\ +const txt = 'Python is the most beautiful language that a human being has ever created.\ I recommend python for a first programming language' matchReplaced = txt.replace(/Python|python/, 'JavaScript') @@ -176,11 +176,11 @@ console.log(matchReplaced) ``` ```sh -JavaScript is the most beautiful language that a human begin has ever created.I recommend python for a first programming language +JavaScript is the most beautiful language that a human being has ever created.I recommend python for a first programming language ``` ```js -const txt = 'Python is the most beautiful language that a human begin has ever created.\ +const txt = 'Python is the most beautiful language that a human being has ever created.\ I recommend python for a first programming language' matchReplaced = txt.replace(/Python|python/g, 'JavaScript') @@ -188,11 +188,11 @@ console.log(matchReplaced) ``` ```sh -JavaScript is the most beautiful language that a human begin has ever created.I recommend JavaScript for a first programming language +JavaScript is the most beautiful language that a human being has ever created.I recommend JavaScript for a first programming language ``` ```js -const txt = 'Python is the most beautiful language that a human begin has ever created.\ +const txt = 'Python is the most beautiful language that a human being has ever created.\ I recommend python for a first programming language' matchReplaced = txt.replace(/Python/gi, 'JavaScript') @@ -200,7 +200,7 @@ console.log(matchReplaced) ``` ```sh -JavaScript is the most beautiful language that a human begin has ever created.I recommend JavaScript for a first programming language +JavaScript is the most beautiful language that a human being has ever created.I recommend JavaScript for a first programming language ``` ```js