Skip to content

Commit 04721f2

Browse files
authored
Merge pull request #11 from attwoodn/attwoodn-patch-1
Update README.md
2 parents 0c90064 + 6b9d252 commit 04721f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,21 +248,21 @@ assert(!expr.evaluate(incoming_packet)); // fails evaluation. Payload was too
248248
incoming_packet.payload.data = "Dwight sux";
249249
assert(expr.evaluate(incoming_packet)); // passes evaluation. The payload was the right size this time
250250
251-
// Jim sends a packet has an error code
251+
// Jim sends a packet that has an error code
252252
incoming_packet.payload.error_code = 404;
253253
assert(!expr.evaluate(incoming_packet)); // fails evaluation. The payload had an error code
254254
```
255255

256256
## Boolean Operators
257257

258-
Boolean operators are used to chain individual expression tree nodes together. There are two boolean operators that can be used: `AND` and `OR`. These boolean operators are accessible via function calls on the expression nodes. Calling these functions generates a new expression tree node which becomes the parent of the nodes on either side of the boolean operator
258+
Boolean operators are used to chain individual expression tree nodes together. There are two boolean operators that can be used: `AND` and `OR`. These boolean operators are accessible via function calls on the expression nodes. Calling these functions generates a new expression tree op node which becomes the parent of the leaf nodes on either side of the boolean operator
259259

260260
A complex expression tree can be created by calling these functions to chain multiple expression tree nodes together.
261261

262262

263263
## Using this Library
264264

265-
To include this library in your project, simply copy the content of the `include` directory into the `include` directory of your project. That's it! Now where did I put that Staples "Easy" button...?
265+
To include this library in your project, simply copy the content of the `include` directory into the `include` directory of your project. That's it! Now, where did I put that Staples "Easy" button...?
266266

267267

268268
## Compiling
@@ -289,4 +289,4 @@ ctest .
289289

290290
CTest will execute the unit tests and provide a pass/fail indication for each one.
291291

292-
The address sanitizer is enabled on every unit test executable. A test will fail should memory leak during test execution.
292+
The address sanitizer is enabled on every unit test executable. A test will fail should memory leak during test execution.

0 commit comments

Comments
 (0)