From dbe3aa42ec9952ad749ef051c4f4cd7a08b5cf97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Thu, 22 Sep 2016 10:42:47 -0400 Subject: [PATCH] Fix typo in error message. --- src/canvas/CanvasProvider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/canvas/CanvasProvider.js b/src/canvas/CanvasProvider.js index 2b9b2085..dd9ced59 100644 --- a/src/canvas/CanvasProvider.js +++ b/src/canvas/CanvasProvider.js @@ -33,7 +33,7 @@ var CanvasProvider = { var ctx = canvas.getContext('2d'); if (!ctx) { throw new Error('Canvas ' + canvas + - ' is unable toprovide a 2D context.'); + ' is unable to provide a 2D context.'); } // If they are not the same size, we don't need to clear them // using clearRect and visa versa.