diff options
author | Persevere Von <wu543065657@163.com> | 2019-04-29 10:59:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-29 10:59:30 +0800 |
commit | b46b1f71753626e1b35f8edc5ff3fc559e4edbb4 (patch) | |
tree | c7d5fdb03695815545803a45da963ac8dd393178 /zh-cn | |
parent | 2dde374091366cb098e5d405daa9c4c4c469b6dc (diff) |
fix: typo
Diffstat (limited to 'zh-cn')
-rw-r--r-- | zh-cn/make-cn.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/make-cn.html.markdown b/zh-cn/make-cn.html.markdown index 281537d6..ae31d77a 100644 --- a/zh-cn/make-cn.html.markdown +++ b/zh-cn/make-cn.html.markdown @@ -47,7 +47,7 @@ file0.txt: # 注意: 即使是这些注释, 如果前面有 TAB, 也会发送给 shell, 注意看 `make file0.txt` 输出 # 如果提供 prerequisites, 则只有 prerequisites 比 target 新时会执行 -# 比如下面这个任务只有当 file1.txt 比 file0.txt 新时才会执行. +# 比如下面这个任务只有当 file0.txt 比 file1.txt 新时才会执行. file1.txt: file0.txt cat file0.txt > file1.txt # 这里跟shell里的命令式一毛一样的. |