Skip to content

Commit 2b82180

Browse files
committed
📝 Writing docs.
1 parent cb33aa9 commit 2b82180

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
### Java 多线程
1414
- [多线程中的常见问题](https://github.com/crossoverJie/Java-Interview/blob/master/MD/Thread-common-problem.md)
15-
- [Synchronize 关键字原理](https://github.com/crossoverJie/Java-Interview/blob/master/MD/Synchronize.md)
15+
- [synchronize 关键字原理](https://github.com/crossoverJie/Java-Interview/blob/master/MD/Synchronize.md)
1616
- [多线程的三大核心](https://github.com/crossoverJie/Java-Interview/blob/master/MD/Threadcore.md)
1717
- [对锁的一些认知,有哪些锁](https://github.com/crossoverJie/Java-Interview/blob/master/MD/Java-lock.md)
1818
- [ReentrantLock 实现原理 ](https://github.com/crossoverJie/Java-Interview/blob/master/MD/ReentrantLock.md)

src/main/java/com/crossoverjie/algorithm/ReverseNode.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void reverseNode(Node head) {
5353

5454
Node pre = head;
5555
Node cur = head.next;
56-
Node next ;
56+
Node next ;
5757
while(cur != null){
5858
next = cur.next;
5959

0 commit comments

Comments
 (0)