From 62c7323390c16e20de51ad8abd12c3b8b17d2fb2 Mon Sep 17 00:00:00 2001 From: Ayush Jamwal <124425268+Ayushjsgithub@users.noreply.github.com> Date: Wed, 27 Mar 2024 22:30:22 +0530 Subject: [PATCH] Update 4-variables.md "A variable's name cannot already be in use" changed to "A variable must have a unique name that is not already in use." as its causing a confusion. --- data/part-1/4-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-1/4-variables.md b/data/part-1/4-variables.md index 61971b5e0..75dfc5f9a 100644 --- a/data/part-1/4-variables.md +++ b/data/part-1/4-variables.md @@ -476,7 +476,7 @@ int variable7 = 4; // Allowed, but is not a descriptive variable name -A variable's name cannot already be in use. These names include, for instance, variables previously defined in the program and commands provided by Java, such as `System.out.print` and `System.out.println`. --> +A variable must have a unique name that is not already in use. These names include, for instance, variables previously defined in the program and commands provided by Java, such as `System.out.print` and `System.out.println`. -->