Skip to content

Commit e3add61

Browse files
authored
Fixed typo.
1 parent cd75c27 commit e3add61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jep-010-slice-projections.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ to JSON. Slicing does not produce a projection so expressions such as
2020
the following will always return `null`: `myarray[:10].foo.bar`.
2121

2222
Instead if you wanted to access `foo.bar` for each element in the
23-
array slice you currently have to write `myarray[:10][\*].foo.bar`.
23+
array slice you currently have to write `myarray[:10][*].foo.bar`.
2424

2525
This JEP proposes that a slice expression will create a projection.
2626

@@ -35,7 +35,7 @@ Instead, the main reason for this JEP is for consistency. Right now there are
3535
three types of array projections:
3636

3737

38-
* List Projections (`foo[\*].bar`)
38+
* List Projections (`foo[*].bar`)
3939

4040

4141
* Filter Projections (`foo[?a==b].bar`)

0 commit comments

Comments
 (0)