Skip to content

Commit d0bb56d

Browse files
armanh3kkahgoh
andauthored
Apply suggestions from code review
Co-authored-by: Kah Goh <[email protected]>
1 parent 89dc086 commit d0bb56d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/concept/tim-from-marketing/.docs/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ In Java, the `null` literal is used to denote the absence of a value.
77
Primitive data types in Java all have a default value and therefore can never be `null`.
88
By convention, they start with a lowercase letter e.g `int`.
99

10-
Reference types contain the memory address of an object and can have a value of null.
11-
These variables usually start with an uppercase letter, e.g. `String`.
10+
Reference types contain the memory address of an object and can have a value of `null`.
11+
They generally start with an uppercase letter, e.g. `String`.
1212

1313
Attempting to assign a primitive variable a value of `null` will result in a compile time error as the variable always holds a primitive value of the type assigned.
1414

0 commit comments

Comments
 (0)