We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0b16de4 + 78a4e62 commit 1f5021cCopy full SHA for 1f5021c
docs/database/mysql/a-thousand-lines-of-mysql-study-notes.md
@@ -19,7 +19,7 @@ tag:
19
-- 创建Windows服务
20
sc create mysql binPath= mysqld_bin_path(注意:等号与值之间有空格)
21
/* 连接与断开服务器 */
22
-mysql -h 地址 -P 端口 -u 用户名 -p 密码
+mysql -u 地址 -P 端口 -u 用户名 -p 密码
23
SHOW PROCESSLIST -- 显示哪些线程正在运行
24
SHOW VARIABLES -- 显示系统变量信息
25
```
docs/system-design/basis/naming.md
@@ -233,7 +233,7 @@ Codelf 提供了在线网站版本,网址:[https://unbug.github.io/codelf/](
233
234
1. 《阿里巴巴 Java 开发手册》
235
2. 《Clean Code》
236
-3. Google Java 代码指南:https://google.github.io/styleguide/javaguide.html#s5.1-identifier-name
+3. Google Java 代码指南:https://google.github.io/styleguide/javaguide.html
237
4. 告别编码5分钟,命名2小时!史上最全的Java命名规范参考:https://www.cnblogs.com/liqiangchn/p/12000361.html
238
239
## 总结
0 commit comments