Skip to content

Commit 73c7fc5

Browse files
authored
*: fix typos with indefinite articles (tldr-pages#20957)
1 parent 583918f commit 73c7fc5

12 files changed

Lines changed: 12 additions & 12 deletions

File tree

pages/common/gcloud-iam.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
`gcloud iam list-grantable-roles {{resource}}`
1010

11-
- Create a custom role for a organization or project:
11+
- Create a custom role for an organization or project:
1212

1313
`gcloud iam roles create {{role_name}} --{{organization|project}} {{organization|project_id}} --file {{path/to/role.yaml}}`
1414

pages/common/lprm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
`lprm -h {{server}}:{{port}} {{job_id}}`
1818

19-
- Cancel multiple jobs with a encrypted connection to the server:
19+
- Cancel multiple jobs with an encrypted connection to the server:
2020

2121
`lprm -E {{job_id1 job_id2 ...}}`
2222

pages/common/pgmramp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
`pgmramp -rectangle > {{path/to/output.pgm}}`
1717

18-
- Generate a elliptical greyscale map:
18+
- Generate an elliptical greyscale map:
1919

2020
`pgmramp -ellipse {{path/to/image.pgm}} > {{path/to/output.pgm}}`
2121

pages/common/uniq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# uniq
22

3-
> Output the unique lines from a input or file.
3+
> Output the unique lines from an input or file.
44
> Since it does not detect repeated lines unless they are adjacent, we need to sort them first.
55
> See also: `sort`.
66
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/uniq-invocation.html>.

pages/linux/gs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
`gs -dQUIET -dBATCH {{file.pdf}}`
99

10-
- Reduce PDF file size to 150 dpi images for reading on a e-book device:
10+
- Reduce PDF file size to 150 dpi images for reading on an e-book device:
1111

1212
`gs -dNOPAUSE -dQUIET -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -sOutputFile={{output.pdf}} {{input.pdf}}`
1313

pages/linux/macchanger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
> Manipulate network interface MAC addresses.
44
> More information: <https://manned.org/macchanger>.
55
6-
- View the current and permanent MAC addresses of a interface:
6+
- View the current and permanent MAC addresses of an interface:
77

88
`macchanger {{[-s|--show]}} {{interface}}`
99

pages/linux/rpmkeys.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
> When adding an RPM repository, you must also import the corresponding RPM key.
55
> More information: <https://rpm-software-management.github.io/rpm/man/rpmkeys.8>.
66
7-
- List all imported RPM keys. Also outputs its Key ID needed for deleting a imported RPM key:
7+
- List all imported RPM keys. Also outputs its Key ID needed for deleting an imported RPM key:
88

99
`sudo rpmkeys --list`
1010

pages/linux/smem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
`smem`
99

10-
- Print memory usage for current processes for a every user on a system:
10+
- Print memory usage for current processes for every user on a system:
1111

1212
`smem --users`
1313

pages/linux/tcpick.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# tcpick
22

33
> Packet sniffing and network traffic analysis tool.
4-
> It can capture and display TCP connections and data. It can also monitor network traffic on a interface, host, or port.
4+
> It can capture and display TCP connections and data. It can also monitor network traffic on an interface, host, or port.
55
> More information: <https://manned.org/tcpick>.
66
77
- Capture traffic on a specific interface, port, and host:

pages/linux/vzdump.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
`vzdump {{vm_id}} --mode {{suspend|snapshot}}`
1717

18-
- Back up all guest systems and send an notification email to the root and admin users:
18+
- Back up all guest systems and send a notification email to the root and admin users:
1919

2020
`vzdump --all --mode {{suspend}} --mailto {{root}} --mailto {{admin}}`
2121

0 commit comments

Comments
 (0)