Skip to content

Commit 98fc57e

Browse files
lukejansrgrunber
authored andcommitted
Fix return type typo in "qualifyMembers" example
1 parent f4bceff commit 98fc57e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

document/_java.learnMoreAboutCleanUps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ For instance:
1616
```java
1717
private int value;
1818

19-
public void getValue() {
19+
public int getValue() {
2020
return value;
2121
}
2222
```
@@ -26,7 +26,7 @@ becomes:
2626
```java
2727
private int value;
2828

29-
public void getValue() {
29+
public int getValue() {
3030
return this.value;
3131
}
3232
```

0 commit comments

Comments
 (0)