Skip to content

Commit 8e17ece

Browse files
authored
Update AQS.md
fix 错别字
1 parent b07cf48 commit 8e17ece

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Java相关/Multithread/AQS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ AQS使用一个int成员变量来表示同步状态,通过内置的FIFO队列
5858
private volatile int state;//共享变量,使用volatile修饰保证线程可见性
5959
```
6060

61-
状态信息通过procted类型的getState,setState,compareAndSetState进行操作
61+
状态信息通过protected类型的getState,setState,compareAndSetState进行操作
6262

6363
```java
6464

0 commit comments

Comments
 (0)