Skip to content

Commit 2669090

Browse files
committed
README fixes
1 parent adb4888 commit 2669090

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
media="(prefers-color-scheme: light)"
99
/>
1010
<source
11-
srcset="https://raw.githubusercontent.com/Unitech/pm2/development/pres/pm2-v4-dark-mode.png"
11+
srcset="https://raw.githubusercontent.com/Unitech/pm2/master/pres/pm2-v4-dark-mode.png"
1212
width=710px
1313
media="(prefers-color-scheme: dark), (prefers-color-scheme: no-preference)"
1414
/>
15-
<img src="https://raw.githubusercontent.com/Unitech/pm2/master/pres/pm2-v4.png" />
15+
<img src="https://raw.githubusercontent.com/Unitech/pm2/master/pres/pm2-v4.png" alt="PM2" />
1616
</picture>
1717

1818
<br/>
@@ -22,11 +22,11 @@
2222
<br/><br/>
2323

2424

25-
<a title="PM2 Downloads" href="https://npm-stat.com/charts.html?package=pm2&from=2018-01-01&to=2023-08-01">
25+
<a title="PM2 Downloads" href="https://npm-stat.com/charts.html?package=pm2">
2626
<img src="https://img.shields.io/npm/dm/pm2" alt="Downloads per Month"/>
2727
</a>
2828

29-
<a title="PM2 Downloads" href="https://npm-stat.com/charts.html?package=pm2&from=2018-01-01&to=2023-08-01">
29+
<a title="PM2 Downloads" href="https://npm-stat.com/charts.html?package=pm2">
3030
<img src="https://img.shields.io/npm/dy/pm2" alt="Downloads per Year"/>
3131
</a>
3232

@@ -48,7 +48,7 @@ Starting an application in production mode is as easy as:
4848
$ pm2 start app.js
4949
```
5050

51-
PM2 is constantly assailed by [a comprehensive test suite](https://github.com/Unitech/pm2/actions/workflows/node.js.yml).
51+
PM2 is battle-tested by [a comprehensive test suite](https://github.com/Unitech/pm2/actions/workflows/node.js.yml).
5252

5353
Official website: [https://pm2.keymetrics.io/](https://pm2.keymetrics.io/)
5454

@@ -139,7 +139,7 @@ $ pm2 start api.js -i <processes>
139139

140140
**Zero Downtime Reload**
141141

142-
Hot Reload allows to update an application without any downtime:
142+
Hot Reload allows you to update an application without any downtime:
143143

144144
```bash
145145
$ pm2 reload all
@@ -161,7 +161,7 @@ CMD [ "pm2-runtime", "npm", "--", "start" ]
161161

162162
### Host monitoring speedbar
163163

164-
PM2 allows to monitor your host/server vitals with a monitoring speedbar.
164+
PM2 allows you to monitor your host/server vitals with a monitoring speedbar.
165165

166166
To enable host monitoring:
167167

@@ -170,7 +170,7 @@ $ pm2 set pm2:sysmonit true
170170
$ pm2 update
171171
```
172172

173-
![Framework supported](https://raw.githubusercontent.com/Unitech/pm2/master/pres/vitals.png)
173+
![Host monitoring](https://raw.githubusercontent.com/Unitech/pm2/master/pres/vitals.png)
174174

175175
### Terminal Based Monitoring
176176

@@ -197,7 +197,7 @@ Examples:
197197
```bash
198198
$ pm2 logs APP-NAME # Display APP-NAME logs
199199
$ pm2 logs --json # JSON output
200-
$ pm2 logs --format # Formated output
200+
$ pm2 logs --format # Formatted output
201201

202202
$ pm2 flush # Flush all logs
203203
$ pm2 reloadLogs # Reload all logs
@@ -259,7 +259,7 @@ Thanks in advance and we hope that you like PM2!
259259

260260
## Contributors
261261

262-
[Contributors](http://pm2.keymetrics.io/hall-of-fame/)
262+
[Contributors](https://pm2.keymetrics.io/hall-of-fame/)
263263

264264
## License
265265

lib/binaries/CLI.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ commander.command('reloadLogs')
878878
//
879879
commander.command('logs [id|name|namespace]')
880880
.option('--json', 'json log output')
881-
.option('--format', 'formated log output')
881+
.option('--format', 'formatted log output')
882882
.option('--raw', 'raw output')
883883
.option('--err', 'only shows error output')
884884
.option('--out', 'only shows standard output')

0 commit comments

Comments
 (0)