Skip to content

Commit 7c5909e

Browse files
authored
Update README.md (#1098)
A couple of typos.
1 parent 98789f3 commit 7c5909e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ext/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ in expressions.
1111
### Cel.Bind
1212

1313
Binds a simple identifier to an initialization expression which may be used
14-
in a subsequenct result expression. Bindings may also be nested within each
14+
in a subsequent result expression. Bindings may also be nested within each
1515
other.
1616

1717
cel.bind(<varName>, <initExpr>, <resultExpr>)
@@ -29,7 +29,7 @@ Local bindings are not guaranteed to be evaluated before use.
2929

3030
## Encoders
3131

32-
Encoding utilies for marshalling data into standardized representations.
32+
Encoding utilities for marshalling data into standardized representations.
3333

3434
### Base64.Decode
3535

@@ -507,11 +507,11 @@ Examples:
507507
Returns an optional with the last value from the list or `optional.None` if the
508508
list is empty.
509509

510-
<list(T)>.list() -> <Optional(T)>
510+
<list(T)>.last() -> <Optional(T)>
511511

512512
Examples:
513513

514-
[1, 2, 3].list().value() == 3
514+
[1, 2, 3].last().value() == 3
515515
[].last().orValue('test') == 'test'
516516

517517
This is syntactic sugar for list[list.size()-1].

0 commit comments

Comments
 (0)