Merge pull request #2701 from Licox04/main

docs: (aqs.md) fix typo
This commit is contained in:
Guide 2025-08-07 16:02:29 +08:00 committed by GitHub
commit 282a87f6b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -626,7 +626,7 @@ private Node addWaiter(Node mode) {
### AQS 资源获取源码分析(共享模式)
AQS 中以独占模式获取资源的入口方法是 `acquireShared()` ,如下:
AQS 中以共享模式获取资源的入口方法是 `acquireShared()` ,如下:
```JAVA
// AQS