occam-query 4.1.3 → 4.1.4

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -97,8 +97,8 @@ If repeatedly using the same query expression, build a `query` object and make u
97
97
  import { Query } from "occam-query";
98
98
 
99
99
  const node = ...,
100
- expression = "...",
101
- query = Query.fromExpression(expression)
100
+ expressionString = "...",
101
+ query = Query.fromExpressionString(expressionString)
102
102
  nodes = query.execute(node);
103
103
 
104
104
  ...
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "occam-query",
3
3
  "author": "James Smith",
4
- "version": "4.1.3",
4
+ "version": "4.1.4",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/occam-query",
7
7
  "description": "Occam's query functionality.",