diff options
author | Jesús <heckyel@hyperbola.info> | 2020-05-02 17:44:29 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-05-02 17:44:29 -0500 |
commit | 7b7eb3463e84992a9204d12b0fd905fd1927abec (patch) | |
tree | 896167806ff3c0f8e8546e45daa2a7e637b82a9d /lib/Tools.jsm | |
parent | c9532aa9677a920d46dad57d1fa87c7c20778264 (diff) | |
download | ematrix-7b7eb3463e84992a9204d12b0fd905fd1927abec.tar.lz ematrix-7b7eb3463e84992a9204d12b0fd905fd1927abec.tar.xz ematrix-7b7eb3463e84992a9204d12b0fd905fd1927abec.zip |
Fix typing errors
Diffstat (limited to 'lib/Tools.jsm')
-rw-r--r-- | lib/Tools.jsm | 2 |
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 = { |