Skip to content

Commit 9b894a4

Browse files
committed
Updated readme
1 parent 1a37044 commit 9b894a4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sql-where-parser",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Parses an SQL-like WHERE string into various forms.",
55
"main": "SqlWhereParser.js",
66
"scripts": {

test/SqlWhereParser.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ describe('SqlWhereParser', function() {
136136
// </div>
137137
});
138138

139-
it(`The "expressionTree" result is an array where the first element is the operation, and the second element is an array of that operation's operands.`, function() {
139+
it(`The "expressionTree" result is an array where the first element is the operation, and the second element is an array of that operation's operands`, function() {
140140

141141
// "expressionTree": [
142142
// "AND",
@@ -527,7 +527,7 @@ describe('SqlWhereParser', function() {
527527

528528
describe('#operatorType(String: operator):Function|null', function() {
529529

530-
it("returns the operator's type (unary, binary, etc.).", function() {
530+
it("returns the operator's type (unary, binary, etc.)", function() {
531531

532532
parser.operators.forEach((operators) => {
533533

@@ -750,7 +750,7 @@ describe('SqlWhereParser', function() {
750750
}
751751
});
752752

753-
it("provides a LiteralIndex as the array operand's index, to alert the parser that this operand is a literal and requires no further parsing.", function() {
753+
it("provides a LiteralIndex as the array operand's index, to alert the parser that this operand is a literal and requires no further parsing", function() {
754754

755755
const operand1 = 'field';
756756
const operand2 = [1, 2, 3];

0 commit comments

Comments
 (0)