Skip to content

Commit b5e5f9f

Browse files
author
Justin Lin
committed
新增勘誤
1 parent f61aceb commit b5e5f9f

File tree

5 files changed

+13
-1
lines changed

5 files changed

+13
-1
lines changed

correct_errors.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,22 @@
9494

9595
![P7-9](images/7_9_typo_1.JPG)
9696

97+
## P7-23
98+
99+
![P7-23](images/7_23_typo_1.JPG)
100+
101+
## P9-6
102+
103+
![P9-6](images/9_6_typo_1.JPG)
104+
97105
## P12-41
98106

99107
![P12-41](images/12_41_typo_1.JPG)
100108

109+
## P8-24
110+
111+
![P8-24](images/8_24_typo_1.JPG)
112+
101113
## P12-46
102114

103115
![P12-46](images/12_46_typo_1.JPG)

images/7_23_typo_1.JPG

49.7 KB
Loading

images/8_24_typo_1.JPG

43.1 KB
Loading

images/9_6_typo_1.JPG

25 KB
Loading

samples/CH09/Collection/src/cc/openhome/SimpleLinkedList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
public class SimpleLinkedList {
44
private class Node {
55
Node(Object o) {
6-
this.o = o;
6+
this.elem = o;
77
}
88
Object o;
99
Node next;

0 commit comments

Comments
 (0)