xml-twig 1.4.0 → 1.4.1
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/doc/twig.md +6 -6
- package/package.json +1 -1
- package/twig.js +3 -3
package/doc/twig.md
CHANGED
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
<dd><p>Generic error for non implemented feature</p>
|
|
10
10
|
</dd>
|
|
11
11
|
<dt><a href="#UnsupportedParser">UnsupportedParser</a></dt>
|
|
12
|
-
<dd><p>Error for unsupported
|
|
12
|
+
<dd><p>Error for unsupported parser</p>
|
|
13
13
|
</dd>
|
|
14
14
|
<dt><a href="#UnsupportedType">UnsupportedType</a></dt>
|
|
15
|
-
<dd><p>Generic error for unsupported data
|
|
15
|
+
<dd><p>Generic error for unsupported data type</p>
|
|
16
16
|
</dd>
|
|
17
17
|
<dt><a href="#UnsupportedCondition">UnsupportedCondition</a></dt>
|
|
18
|
-
<dd><p>Generic error for unsupported
|
|
18
|
+
<dd><p>Generic error for unsupported condition</p>
|
|
19
19
|
</dd>
|
|
20
20
|
</dl>
|
|
21
21
|
|
|
@@ -1386,7 +1386,7 @@ Generic error for non implemented feature
|
|
|
1386
1386
|
<a name="UnsupportedParser"></a>
|
|
1387
1387
|
|
|
1388
1388
|
## UnsupportedParser
|
|
1389
|
-
Error for unsupported
|
|
1389
|
+
Error for unsupported parser
|
|
1390
1390
|
|
|
1391
1391
|
**Kind**: global class
|
|
1392
1392
|
<a name="new_UnsupportedParser_new"></a>
|
|
@@ -1404,7 +1404,7 @@ Error for unsupported data types
|
|
|
1404
1404
|
<a name="UnsupportedType"></a>
|
|
1405
1405
|
|
|
1406
1406
|
## UnsupportedType
|
|
1407
|
-
Generic error for unsupported data
|
|
1407
|
+
Generic error for unsupported data type
|
|
1408
1408
|
|
|
1409
1409
|
**Kind**: global class
|
|
1410
1410
|
<a name="new_UnsupportedType_new"></a>
|
|
@@ -1422,7 +1422,7 @@ Generic error for unsupported data types
|
|
|
1422
1422
|
<a name="UnsupportedCondition"></a>
|
|
1423
1423
|
|
|
1424
1424
|
## UnsupportedCondition
|
|
1425
|
-
Generic error for unsupported
|
|
1425
|
+
Generic error for unsupported condition
|
|
1426
1426
|
|
|
1427
1427
|
**Kind**: global class
|
|
1428
1428
|
<a name="new_UnsupportedCondition_new"></a>
|
package/package.json
CHANGED
package/twig.js
CHANGED
|
@@ -1236,7 +1236,7 @@ class NotImplementedYet extends TypeError {
|
|
|
1236
1236
|
|
|
1237
1237
|
|
|
1238
1238
|
/**
|
|
1239
|
-
* Error for unsupported
|
|
1239
|
+
* Error for unsupported parser
|
|
1240
1240
|
* @exception UnsupportedParser
|
|
1241
1241
|
*/
|
|
1242
1242
|
class UnsupportedParser extends TypeError {
|
|
@@ -1249,7 +1249,7 @@ class UnsupportedParser extends TypeError {
|
|
|
1249
1249
|
}
|
|
1250
1250
|
|
|
1251
1251
|
/**
|
|
1252
|
-
* Generic error for unsupported data
|
|
1252
|
+
* Generic error for unsupported data type
|
|
1253
1253
|
* @exception UnsupportedType
|
|
1254
1254
|
*/
|
|
1255
1255
|
class UnsupportedType extends TypeError {
|
|
@@ -1262,7 +1262,7 @@ class UnsupportedType extends TypeError {
|
|
|
1262
1262
|
}
|
|
1263
1263
|
|
|
1264
1264
|
/**
|
|
1265
|
-
* Generic error for unsupported
|
|
1265
|
+
* Generic error for unsupported condition
|
|
1266
1266
|
* @exception UnsupportedCondition
|
|
1267
1267
|
*/
|
|
1268
1268
|
class UnsupportedCondition extends TypeError {
|