diff --git a/data/part-1/4-variables.md b/data/part-1/4-variables.md index 61971b5e..75dfc5f9 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`. -->