From 144f6433367379581e3da86d783b1fe53ad1831a Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Mon, 16 May 2022 20:12:39 +0100 Subject: [PATCH] Update README.md Improving language for anything-to-declare subject --- subjects/anything-to-declare/README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/subjects/anything-to-declare/README.md b/subjects/anything-to-declare/README.md index 2971b6af..89ef1e21 100644 --- a/subjects/anything-to-declare/README.md +++ b/subjects/anything-to-declare/README.md @@ -110,14 +110,16 @@ console.log(cashPayment) ### Instructions -All right, before we can embark into this adventure, you are going to tell us -more about yourself using **variables** ! +All right, before we can embark on this adventure, you are going to tell us +more about yourself using **variables**. -- Declare a variable _identified_ `age` of a `Number` value of your age +Declare three variables: -- Declare a variable _identified_ `name` of a `String` value of your name +- `age`: your age as a `number` -- Declare a variable _identified_ `secureLuggage` of a `Boolean` saying if your - luggage contain dangerous things or not. _(for obvious security reasons)_ +- `name`: your name as a `string` -> PS: And please, use reasonable values, or the tests might reject you ! +- `secureLuggage`: which will be a `boolean` stating whether or not your + luggage contains dangerous materials. _(for obvious security reasons)_ + +> PS: Remember you are trying to board a plane, so use reasonable values.