diff --git a/docs/00-Getting-Started.md b/docs/00-Getting-Started.md
index 39db54b37..0b32323e9 100644
--- a/docs/00-Getting-Started.md
+++ b/docs/00-Getting-Started.md
@@ -103,7 +103,7 @@ Chart.defaults.global = {
// Legend callback function.
// @param {Chart} chart : the chart object to generate a legend for
- legendCallback: legendCallback: function(chart) {
+ legendCallback: function(chart) {
var text = [];
text.push('
');
for (var i = 0; i < chart.data.datasets.length; i++) {
@@ -116,7 +116,7 @@ Chart.defaults.global = {
text.push('
');
return text.join("");
- }
+ },
animation: {
duration: 1000,
@@ -222,4 +222,4 @@ If for example, you wanted all charts created to be responsive, and resize when
Chart.defaults.global.responsive = true;
```
-Now, every time we create a chart, `options.responsive` will be `true`.
\ No newline at end of file
+Now, every time we create a chart, `options.responsive` will be `true`.