From 3038cf736d79fc36f240ea3b125c2f75c94f8d99 Mon Sep 17 00:00:00 2001 From: nprimo Date: Mon, 1 Jul 2024 12:38:56 +0100 Subject: [PATCH] docs(phant0m-writ3r): clarify subject --- subjects/phant0m-writ3r/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/subjects/phant0m-writ3r/README.md b/subjects/phant0m-writ3r/README.md index f65e44fd0..8b806dbe5 100644 --- a/subjects/phant0m-writ3r/README.md +++ b/subjects/phant0m-writ3r/README.md @@ -7,19 +7,19 @@ Any expressions is valid code inside conditions, that includes functions calls: ```js // for example, we can uppercase to make sure it will match // no mater if the name has upper or lower letter ! -if ('Patrick Lemaire'.toUpperCase() === 'PATRICK LEMAIRE') { - console.log('This is Patrick') +if ("Patrick Lemaire".toUpperCase() === "PATRICK LEMAIRE") { + console.log("This is Patrick"); } ``` ### Instructions -Your carreer as a rap ghost writer is at a dead end as inspiration seems to have +Your career as a rap ghost writer is at a dead end as inspiration seems to have left for good, but you still have an ace up your sleeve, you will write a bot -`PHANT0M-WRiT3R` that find ryhmes for you ! +`PHANT0M-WRiT3R` that find rhymes for you ! -- Log the provided variable `word` if it does not start with `'al'` and end with - `'ion'` +- Log the provided variable `word` if it ends with `ion` AND does not start + with `'al'`. ### Notions