Procházet zdrojové kódy

Apply suggestions from code review

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
marchersimon před 4 roky
rodič
revize
9eb6123786
2 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. 1 1
      pages.zh/common/apg.md
  2. 3 3
      pages/common/ar.md

+ 1 - 1
pages.zh/common/apg.md

@@ -1,7 +1,7 @@
 # apg
 
 > 生成任意复杂度的随机密码.
-> 更多信息: <https://manpages.debian.org/latest/apg/apg.1.html>.
+> 更多信息: <https://manpages.debian.org/latest/apg/apg.1>.
 
 - 生成随机密码 (默认密码长度为 8 位):
 

+ 3 - 3
pages/common/ar.md

@@ -5,7 +5,7 @@
 
 - Extract all members from an archive:
 
-`ar -x {{path/to/archive.a}}`
+`ar -x {{path/to/file.a}}`
 
 - List the members of an archive:
 
@@ -13,7 +13,7 @@
 
 - Replace or add files to an archive:
 
-`ar -r {{path/to/archive.a}} {{path/to/file1.o}} {{path/to/file2.o}}`
+`ar -r {{path/to/file.a}} {{path/to/file1.o}} {{path/to/file2.o}}`
 
 - Insert an object file index (equivalent to using `ranlib`):
 
@@ -21,4 +21,4 @@
 
 - Create an archive with files and an accompanying object file index:
 
-`ar -rs {{path/to/archive.a}} {{path/to/file1.o}} {{path/to/file2.o}}`
+`ar -rs {{path/to/file.a}} {{path/to/file1.o}} {{path/to/file2.o}}`