From aba439c1f66c70792c5eeae77964455a68ddf3ff Mon Sep 17 00:00:00 2001 From: Clement Denis Date: Mon, 1 Mar 2021 14:05:35 +0000 Subject: [PATCH] fix: clarify subject of declarations.js --- subjects/declarations/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/declarations/README.md b/subjects/declarations/README.md index ddbe3a65..19fb113d 100644 --- a/subjects/declarations/README.md +++ b/subjects/declarations/README.md @@ -15,7 +15,7 @@ Create the following constant variables: - arr: an array of the 3 values: 4, undefined, '2' - obj: an object with 3 property (str, num & bool) -`nested` and `obj` must be frozen to prevent changes from them. +`nested`, `arr` and `obj` must be frozen to prevent changes from them. ### Notions