From 9eb612378634ff548a7da6c44f106f5e4625a161 Mon Sep 17 00:00:00 2001 From: marchersimon <50295997+marchersimon@users.noreply.github.com> Date: Wed, 31 Mar 2021 17:41:16 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Axel Navarro --- pages.zh/common/apg.md | 2 +- pages/common/ar.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.zh/common/apg.md b/pages.zh/common/apg.md index dc6717a8d..cce1a919f 100644 --- a/pages.zh/common/apg.md +++ b/pages.zh/common/apg.md @@ -1,7 +1,7 @@ # apg > 生成任意复杂度的随机密码. -> 更多信息: . +> 更多信息: . - 生成随机密码 (默认密码长度为 8 位): diff --git a/pages/common/ar.md b/pages/common/ar.md index 00a626c7f..61f3a08c1 100644 --- a/pages/common/ar.md +++ b/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}}`