Skip to content

Commit

Permalink
Fix spelling in code sample (#391)
Browse files Browse the repository at this point in the history
`protbuf` -> `protobuf`

Co-authored-by: Renée Kooi <hehehhehhee@gmail.com>
  • Loading branch information
goto-bus-stop and Renée Kooi authored Oct 3, 2024
1 parent 7bcc79c commit d8821f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/langdef.md
Original file line number Diff line number Diff line change
Expand Up @@ -1144,14 +1144,14 @@ message Msg {
// CEL - Produces false according to protobuf equality since the types of
// Int32Value and FloatValue are not equal.
Msg{values: [google.protobuf.Int32Value{value: 1}]}
== Msg{values: [google.protbuf.FloatValue{value: 1.0}]}
== Msg{values: [google.protobuf.FloatValue{value: 1.0}]}
// CEL - Produces true according to CEL equality with well-known
// protobuf type unwrapping of the list elements within `values`
// where the list values are unwrapped to CEL numbers and compared
// using `numericEquals`.
Msg{values: [google.protobuf.Int32Value{value: 1}]}.values
== Msg{values: [google.protbuf.FloatValue{value: 1.0}]}.values
== Msg{values: [google.protobuf.FloatValue{value: 1.0}]}.values
```

### Ordering
Expand Down

0 comments on commit d8821f4

Please sign in to comment.