Skip to content

Commit c694733

Browse files
committed
typo
1 parent 5eca37d commit c694733

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ $ webpagetest --help
4747
* **testers** _[options]_: list testers status and details
4848
* **test** _[options] \<url_or_script\>_: run test, _\<url_or_script\>_ can also be a path to a script file
4949
* **cancel** _\<id\>_: cancel running/pending test
50-
* **har** _\<id\>_: get the HTTPS Archive (HAR) from test
50+
* **har** _\<id\>_: get the HTTP Archive (HAR) from test
5151
* **pagespeed** _[options] \<id\>_: get the Google Page Speed results (if available) from test
5252
* **utilization** _[options] \<id\>_: get the CPU, bandwidth and memory utilization data from test
5353
* **request** _[options] <\id\>_: get the request data from test
@@ -62,7 +62,7 @@ $ webpagetest --help
6262
* **waterfall** _[options] \<id\>_: get the waterfall PNG image
6363
* **screenshot** _[options] \<id\>_: get the fully loaded page screenshot in JPG format (PNG if in full resolution)
6464
* **video** _[options] \<tests\>_: create a video from _\<tests\>_ (comma separated test ids)
65-
* **player _\<id\>_: get a html5 player for a video _\<id\>_
65+
* **player** _\<id\>_: get a html5 player for a video _\<id\>_
6666
* **listen** _[options]_ _[port]_: start webpagetest-api server on port _[7791_]
6767
* **batch** _\<file\>_: run commands in batch, i.e. one command per line from _\<file\>_ in parallel
6868

@@ -85,7 +85,7 @@ _The default WPT server can also be specified via environment variable `WEBPAGET
8585
* **-L, --label** _\<label\>_: label for the test
8686
* **-i, --onload**: stop test at document complete. typically, tests run until all activity stops
8787
* **-S, --noscript**: disable javascript (IE, Chrome, Firefox)
88-
* **-C, --clearcerts**: clear SSL cetificate caches
88+
* **-C, --clearcerts**: clear SSL certificate caches
8989
* **-R, --ignoressl**: ignore SSL certificate errors, e.g. name mismatch, self-signed certificates, etc
9090
* **-T, --standards**: forces all pages to load in standards mode (IE only)
9191
* **-u, --tcpdump**: capture network packet trace (tcpdump)
@@ -408,7 +408,7 @@ wpt.runTest(script, function(err, data) {
408408
* **label**: _String_, label for the test
409409
* **stopAtDocumentComplete**: _Boolean_, stop test at document complete. typically, tests run until all activity stops
410410
* **disableJavaScript**: _Boolean_, disable javascript (IE, Chrome, Firefox)
411-
* **clearCerts**: _Boolean_, clear SSL cetificate caches
411+
* **clearCerts**: _Boolean_, clear SSL certificate caches
412412
* **ignoreSSL**: _Boolean_, ignore SSL certificate errors, e.g. name mismatch, self-signed certificates, etc
413413
* **disableCompatibilityView**: _Boolean_, forces all pages to load in standards mode (IE only)
414414
* **tcpDump**: _Boolean_, capture network packet trace (tcpdump)

lib/mapping.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ var options = {
9595
key: 'C',
9696
api: 'clearcerts',
9797
bool: true,
98-
info: 'clear SSL cetificate caches'
98+
info: 'clear SSL certificate caches'
9999
},
100100
'ignoressl': {
101101
name: 'ignoreSSL',
@@ -682,7 +682,7 @@ var commands = {
682682
'har': {
683683
name: 'getHARData',
684684
param: 'id',
685-
info: 'get the HTTPS Archive (HAR) from test'
685+
info: 'get the HTTP Archive (HAR) from test'
686686
},
687687
'pagespeed': {
688688
name: 'getPageSpeedData',

0 commit comments

Comments
 (0)