Skip to content

Commit abff0c2

Browse files
committed
[docs update]完善部分表达
1 parent c3ea71d commit abff0c2

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/cs-basics/operating-system/linux-intro.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,11 @@ Linux 文件系统的结构层次鲜明,就像一棵倒立的树,最顶层
225225

226226
## 4. Linux 基本命令
227227

228-
下面只是给出了一些比较常用的命令。推荐一个 Linux 命令快查网站,非常不错,大家如果遗忘某些命令或者对某些命令不理解都可以在这里得到解决。
228+
下面只是给出了一些比较常用的命令。
229229

230-
Linux 命令大全:[http://man.linuxde.net/](http://man.linuxde.net/)
230+
推荐一个 Linux 命令快查网站,非常不错,大家如果遗忘某些命令或者对某些命令不理解都可以在这里得到解决。Linux 命令在线速查手册:https://www.w3xue.com/manual/linux/
231+
232+
另外,[shell.how](https://www.shell.how/) 这个网站可以用来解释常见命令的意思,对你学习 Linux 基本命令以及其他常用命令(如 Git、NPM)。
231233

232234
### 4.1. 目录切换命令
233235

docs/java/basis/java-basic-questions-03.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ tag:
2020

2121
### Checked Exception 和 Unchecked Exception 有什么区别?
2222

23-
**Checked Exception** 即 受检查异常 ,Java 代码在编译过程中,如果受检查异常没有被 `catch`/`throw` 处理的话,就没办法通过编译
23+
**Checked Exception** 即 受检查异常 ,Java 代码在编译过程中,如果受检查异常没有被 `catch`或者`throws` 关键字处理的话,就没办法通过编译。
2424

2525
比如下面这段 IO 操作的代码:
2626

0 commit comments

Comments
 (0)