From 8bbe4c86b605e185d19778f6042be8f859a46306 Mon Sep 17 00:00:00 2001 From: Nick Uraltsev Date: Sat, 27 Aug 2016 09:37:15 -0700 Subject: [PATCH] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 79b1c61..09f7b25 100644 --- a/README.md +++ b/README.md @@ -467,10 +467,9 @@ axios depends on a native ES6 Promise implementation to be [supported](http://ca If your environment doesn't support ES6 Promises, you can [polyfill](https://github.com/jakearchibald/es6-promise). ## TypeScript -axios includes a [TypeScript](http://typescriptlang.org) definition. +axios includes [TypeScript](http://typescriptlang.org) definitions. ```typescript -/// -import * as axios from 'axios'; +import axios from 'axios'; axios.get('/user?ID=12345'); ```