From f2f65448d87d937927e60865ab41d723b396529f Mon Sep 17 00:00:00 2001 From: Marco 'Gatto' Boffo Date: Mon, 28 Nov 2016 10:58:55 +0100 Subject: [PATCH] general text improvement --- README.md | 3 ++- test/test.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3008080..d8f4022 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,8 @@ Vue.use(VueViewports, { 420: 'mobile', 768: 'tablet', 1024: 'desktop', 1920: 'hd - `$viewportsUpdateEventName`: the event name, called on window (you can catch it if needed) ## Testing -- This software uses [mocha](https://mochajs.org/) as testing framework +This software uses [mocha](https://mochajs.org/) as testing framework + - Clone this repository - `cd vue-viewports` - `npm install` diff --git a/test/test.js b/test/test.js index b9a3886..ff691b9 100644 --- a/test/test.js +++ b/test/test.js @@ -87,7 +87,7 @@ describe('VueViewports', () => { }) describe('install', () => { - it ('should set the name event correctly', () => { + it ('should set the event\'s name correctly', () => { VueViewports.install(Vue, defaults) assert.equal(Vue.prototype.$viewportsUpdateEventName, 'VueViewports$updateCurrentViewport') })