Skip to content

Commit

Permalink
Fixes in README
Browse files Browse the repository at this point in the history
  • Loading branch information
sreeram-venkitesh committed Oct 1, 2024
1 parent adc3bfb commit 845422a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ against some input. Checking is optional, but strongly encouraged.

### Environment Setup

Let's expose `name` and `group` variables to CEL using the `cel.Declarations`
Let's expose `name` and `group` variables to CEL using the `cel.Variable`
environment option:

```go
Expand Down Expand Up @@ -93,7 +93,7 @@ if err != nil {
The `cel.Program` generated at the end of parse and check is stateless,
thread-safe, and cachable.

Type-checking in an optional, but strongly encouraged, step that can reject some
Type-checking is an optional, but strongly encouraged step that can reject some
semantically invalid expressions using static analysis. Additionally, the check
produces metadata which can improve function invocation performance and object
field selection at evaluation-time.
Expand Down Expand Up @@ -244,8 +244,8 @@ too may offer a WASM evaluator with direct to WASM compilation.

### Do I need to Parse _and_ Check?

Checking is an optional, but strongly suggested, step in CEL expression
validation. It is sufficient in some cases to simply Parse and rely on the
Checking is an optional, but strongly suggested step in CEL expression
validation. It is sufficient in some cases to simply parse and rely on the
runtime bindings and error handling to do the right thing.

### Where can I learn more about the language?
Expand Down

0 comments on commit 845422a

Please sign in to comment.