Skip to content

Commit b47052c

Browse files
committed
improve code space gap in why-there-only-value-passing-in-java.md
1 parent c554ff7 commit b47052c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/basis/why-there-only-value-passing-in-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ String hello = "Hello!";
2626
sayHello(hello);
2727
// str 为形参
2828
void sayHello(String str) {
29-
System.out.println(str);
29+
System.out.println(str);
3030
}
3131
```
3232

0 commit comments

Comments
 (0)