Skip to content

Commit 3473559

Browse files
committed
...
1 parent ad0f41f commit 3473559

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/instance_methods/challenges.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void main() {
103103
System.out.println(gokuFullName);
104104
105105
// "Horikawa"
106-
Person vegeta = new VoiceActor();
106+
VoiceActor vegeta = new VoiceActor();
107107
vegeta.lastName = "Horikawa";
108108
System.out.println(vegeta.fullName());
109109
}
@@ -189,7 +189,7 @@ void main() {
189189

190190
Why doesn't this code function as you'd expect? Fix it by changing one line.
191191

192-
```java
192+
```java,editable
193193
class Oscar {
194194
boolean grouchy;
195195

0 commit comments

Comments
 (0)