1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

Merge pull request #1274 from VinterHe/patch-5

修复包命名反例
This commit is contained in:
Guide哥 2021-07-13 23:35:53 +08:00 committed by GitHub
commit 5cf515e61d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,7 +123,7 @@ void shouldGet200StatusCodoWhenRequestIsValid() {
正例: `org.apache.dubbo.common.threadlocal`
反例: ~~`org.apache.dubbo.common.threadLocal`~~
反例: ~~`org.apache_dubbo.Common.threadLocals`~~
**5.抽象类命名使用 Abstract 开头**。