]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Update 00-Getting-Started.md 1367/head
authorachichenin <achichenin@dataart.com>
Sat, 8 Aug 2015 12:15:57 +0000 (15:15 +0300)
committerachichenin <achichenin@dataart.com>
Sat, 8 Aug 2015 12:15:57 +0000 (15:15 +0300)
tiny typo fix

docs/00-Getting-Started.md

index a678a46d660b8dbd7d90edaf90b1278ce26db59b..0ff54a53848948d15f7f77c37002e6e565bc708e 100644 (file)
@@ -46,7 +46,7 @@ To create a chart, we need to instantiate the `Chart` class. To do this, we need
 ```javascript
 // Get the context of the canvas element we want to select
 var ctx = document.getElementById("myChart").getContext("2d");
-var myNewChart = Chart.PolarArea(chart, {
+var myNewChart = Chart.PolarArea(ctx, {
     data: data,
     options: config
 });
@@ -490,4 +490,4 @@ The `userCallback` function allows the user fine grained control over how labels
         }
     }
 }
-```
\ No newline at end of file
+```