aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Tools.jsm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Tools.jsm b/lib/Tools.jsm
index 6db8cfd..c57a5eb 100644
--- a/lib/Tools.jsm
+++ b/lib/Tools.jsm
@@ -28,7 +28,7 @@ var EXPORTED_SYMBOLS = ['Tools'];
var LineIterator = function (text, offset) {
this.text = text;
this.textLen = this.text.length;
- this offset = offset || 0;
+ this.offset = offset || 0;
};
LineIterator.prototype = {