From 657f8df749177ac48e1af3f14c3565e48cfc70b9 Mon Sep 17 00:00:00 2001 From: Martti Laine Date: Fri, 23 Dec 2016 23:11:41 +0200 Subject: [PATCH] [Docs] Fix minor inconsistency/typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f47a9fc..b716f352 100644 --- a/README.md +++ b/README.md @@ -261,7 +261,7 @@ qs.stringify({ a: ['b', 'c', 'd'] }, { indices: false }); // 'a=b&a=c&a=d' ``` -You may use the `arrayFormat` option to specify the format of the output array +You may use the `arrayFormat` option to specify the format of the output array: ```javascript qs.stringify({ a: ['b', 'c'] }, { arrayFormat: 'indices' })