From 6803a68d1cdc78ce6d31eb6c338b5a36196a4bf5 Mon Sep 17 00:00:00 2001 From: yehoki Date: Wed, 11 Oct 2023 22:01:38 +0100 Subject: [PATCH] Fix typo in part 5 section 3 --- data/part-5/3-primitive-and-reference-variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-5/3-primitive-and-reference-variables.md b/data/part-5/3-primitive-and-reference-variables.md index f6308d6de..721ef2aff 100644 --- a/data/part-5/3-primitive-and-reference-variables.md +++ b/data/part-5/3-primitive-and-reference-variables.md @@ -29,7 +29,7 @@ hidden: false -Variables in Java are classified into primitive and reference variables. From the programmer's perspective, a primitive variable's information is stored as the value of that variable, whereas a reference variable holds a reference to information related to that variable. reference variables are practically always objects in Java. Let's take a look at both of these types with the help of two examples. +Variables in Java are classified into primitive and reference variables. From the programmer's perspective, a primitive variable's information is stored as the value of that variable, whereas a reference variable holds a reference to information related to that variable. Reference variables are practically always objects in Java. Let's take a look at both of these types with the help of two examples.