From 60a190147b0850b5f9fe2da7b54e43ef5d0e366a Mon Sep 17 00:00:00 2001
From: Dan Vanderkam <danvk@google.com>
Date: Mon, 31 Jan 2011 11:11:27 -0500
Subject: [PATCH] minor cleanup

---
 dygraph.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dygraph.js b/dygraph.js
index 160b344..7beeb07 100644
--- a/dygraph.js
+++ b/dygraph.js
@@ -1983,7 +1983,7 @@ Dygraph.binarySearch = function(val, arry, abs, low, high) {
     }
     return Dygraph.binarySearch(val, arry, abs, mid + 1, high);
   }
-}
+};
 
 /**
  * Add ticks when the x axis has numbers on it (instead of dates)
@@ -2183,7 +2183,7 @@ Dygraph.prototype.extremeValues_ = function(series) {
  * number of axes, rolling averages, etc.
  */
 Dygraph.prototype.predraw_ = function() {
-  // TODO(danvk): movabilitye more computations out of drawGraph_ and into here.
+  // TODO(danvk): move more computations out of drawGraph_ and into here.
   this.computeYAxes_();
 
   // Create a new plotter.
-- 
2.7.4