Skip to content

Commit dd16aaf

Browse files
committed
minor whitespace and readme fixes
1 parent c716f2c commit dd16aaf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Vue Router Multiguard [![Build Status](https://travis-ci.org/atanas-angelov-dev/vue-router-multiguard.svg?branch=master)](https://travis-ci.org/atanas-angelov-dev/vue-router-multiguard)
22

3-
Provides the ability to specify multiple guards for vue routes.
3+
Provides the ability to specify multiple guards for vue router routes.
44

55
## Installing
66

dist/vue-router-multiguard.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = function(guards) {
2525
if (!Array.isArray(guards)) {
2626
throw new Error('You must specify an array of guards');
2727
}
28-
28+
2929
return (to, from, next) => {
3030
return evaluateGuards(guards, to, from, next);
3131
};

0 commit comments

Comments
 (0)