Skip to content

Commit bb9452e

Browse files
committed
Fix typo in error message when Chart.js lib is missing
1 parent fedfcdb commit bb9452e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

angular-chart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
} else {
1212
// Browser globals
1313
if (typeof angular === 'undefined' || typeof Chart === 'undefined')
14-
throw new Error('Chart.js library needs to included, see http://jtblin.github.io/angular-chart.js/');
14+
throw new Error('Chart.js library needs to be included, see http://jtblin.github.io/angular-chart.js/');
1515
factory(angular, Chart);
1616
}
1717
}(function (angular, Chart) {

0 commit comments

Comments
 (0)