From 68ec2abc4a74777f746824b5595d58e07b44c119 Mon Sep 17 00:00:00 2001 From: Yo'av Moshe Date: Wed, 11 Jan 2017 01:22:51 +0200 Subject: [PATCH] Fixing example in README It's missing an `)` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e8eb02b1c..5b3c9137f6 100644 --- a/README.md +++ b/README.md @@ -535,7 +535,7 @@ Alternatively, you can encode data using the [`qs`](https://github.com/ljharb/qs ```js var qs = require('qs'); -axios.post('/foo', qs.stringify({ 'bar': 123 }); +axios.post('/foo', qs.stringify({ 'bar': 123 })); ``` ### Node.js