mol_jsx_lib 0.0.640 → 0.0.641
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.js +1 -1
- package/node.js.map +1 -1
- package/node.mjs +1 -1
- package/node.test.js +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.js
CHANGED
|
@@ -296,7 +296,7 @@ var $;
|
|
|
296
296
|
return new $mol_span(uri, source, 1, 1, 0);
|
|
297
297
|
}
|
|
298
298
|
static end(uri, source) {
|
|
299
|
-
return new $mol_span(uri, source, 1, source.length + 1,
|
|
299
|
+
return new $mol_span(uri, source, 1, source.length + 1, 0);
|
|
300
300
|
}
|
|
301
301
|
static entire(uri, source) {
|
|
302
302
|
return new $mol_span(uri, source, 1, 1, source.length);
|