From 16e1e6e75789248f01ee1eec9bd181076524de4a Mon Sep 17 00:00:00 2001 From: dosse91 Date: Mon, 30 Oct 2017 12:40:38 +0100 Subject: [PATCH] Fixed a typo --- doc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.md b/doc.md index 755fcfe..80d6033 100644 --- a/doc.md +++ b/doc.md @@ -61,7 +61,7 @@ Look for the line that contains `postMessage('start ` This is where custom parameters can be passed to the test as a JSON string. You can write the string manually or use ``JSON.stringify`` to do that for you. Here's an example: ```js -w.postMessage('start {"time_dl":"10"}); +w.postMessage('start {"time_dl":"10"}'); ``` This starts the test with default settings, but sets the download test to last only 10 seconds. Here's a cleaner version using ``JSON.stringify``: