1
0
mirror of https://github.com/lancedikson/bowser synced 2024-10-27 20:34:22 +00:00

Fix small mistypos

This commit is contained in:
Denis Demchenko 2017-12-20 22:48:05 +02:00
parent b15544770a
commit bee21ea5c3

View File

@ -16,7 +16,7 @@ import Parser from './parser';
*/
class Bowser {
/**
* Creates an object that parse UA
* Creates an object that parses UA
* @param UA
*
* @example
@ -31,7 +31,7 @@ class Bowser {
}
static parse(UA) {
return new this.constructor(UA).getResult();
return (new this.constructor(UA)).getResult();
}
/**