From 2947be722510fce6aff47d4c545b6e3c3d1a24a6 Mon Sep 17 00:00:00 2001 From: Victor Porof Date: Tue, 10 Jun 2014 11:01:50 -0400 Subject: [PATCH] Bug 1023019 - Fix 'grpah' comment typo in Chart.jsm, r=pbrosset --- browser/devtools/shared/widgets/Graphs.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/devtools/shared/widgets/Graphs.jsm b/browser/devtools/shared/widgets/Graphs.jsm index e8179d9e5ae..73936a9c640 100644 --- a/browser/devtools/shared/widgets/Graphs.jsm +++ b/browser/devtools/shared/widgets/Graphs.jsm @@ -511,7 +511,7 @@ AbstractCanvasGraph.prototype = { let ctx = this._ctx; ctx.clearRect(0, 0, this._width, this._height); - // Draw the grpah underneath the cursor and selection. + // Draw the graph underneath the cursor and selection. if (this.hasData()) { ctx.drawImage(this._cachedGraphImage, 0, 0, this._width, this._height); }