Skip to content

Commit

Permalink
Editorial changes from PR suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuckton committed Aug 6, 2019
1 parent 0afc428 commit 18b0b94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tslib.es6.js
Expand Up @@ -116,7 +116,7 @@ export function __values(o) {
return { value: o && o[i++], done: !o };
}
};
throw new TypeError(s ? "Object not iterable." : "Symbol.iterator is not defined.");
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
}

export function __read(o, n) {
Expand Down
2 changes: 1 addition & 1 deletion tslib.js
Expand Up @@ -153,7 +153,7 @@ var __importDefault;
return { value: o && o[i++], done: !o };
}
};
throw new TypeError(s ? "Object not iterable." : "Symbol.iterator is not defined.");
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
};

__read = function (o, n) {
Expand Down

0 comments on commit 18b0b94

Please sign in to comment.