From c276c3a974af489a25a63209dff89b041e51b626 Mon Sep 17 00:00:00 2001 From: Ben Gesoff Date: Mon, 17 Aug 2015 16:37:01 +0100 Subject: [PATCH] fixed two typos wrong it's --- docs/00-Getting-Started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/00-Getting-Started.md b/docs/00-Getting-Started.md index 4fd1c8692..dc5c75616 100644 --- a/docs/00-Getting-Started.md +++ b/docs/00-Getting-Started.md @@ -11,14 +11,14 @@ First we need to include the Chart.js library on the page. The library occupies ``` -Alternatively, if you're using an AMD loader for JavaScript modules, that is also supported in the Chart.js core. Please note: the library will still occupy a global variable of `Chart`, even if it detects `define` and `define.amd`. If this is a problem, you can call `noConflict` to restore the global Chart variable to it's previous owner. +Alternatively, if you're using an AMD loader for JavaScript modules, that is also supported in the Chart.js core. Please note: the library will still occupy a global variable of `Chart`, even if it detects `define` and `define.amd`. If this is a problem, you can call `noConflict` to restore the global Chart variable to its previous owner. ```javascript // Using requirejs require(['path/to/Chartjs'], function(Chart){ // Use Chart.js as normal here. - // Chart.noConflict restores the Chart global variable to it's previous owner + // Chart.noConflict restores the Chart global variable to its previous owner // The function returns what was previously Chart, allowing you to reassign. var Chartjs = Chart.noConflict(); -- 2.47.2