File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ in expressions.
11
11
### Cel.Bind
12
12
13
13
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
15
15
other.
16
16
17
17
cel.bind(<varName>, <initExpr>, <resultExpr>)
@@ -29,7 +29,7 @@ Local bindings are not guaranteed to be evaluated before use.
29
29
30
30
## Encoders
31
31
32
- Encoding utilies for marshalling data into standardized representations.
32
+ Encoding utilities for marshalling data into standardized representations.
33
33
34
34
### Base64.Decode
35
35
@@ -507,11 +507,11 @@ Examples:
507
507
Returns an optional with the last value from the list or ` optional.None ` if the
508
508
list is empty.
509
509
510
- <list(T)>.list () -> <Optional(T)>
510
+ <list(T)>.last () -> <Optional(T)>
511
511
512
512
Examples:
513
513
514
- [1, 2, 3].list ().value() == 3
514
+ [1, 2, 3].last ().value() == 3
515
515
[].last().orValue('test') == 'test'
516
516
517
517
This is syntactic sugar for list[ list.size()-1] .
You can’t perform that action at this time.
0 commit comments