Skip to content

Commit a83adfb

Browse files
committed
fix some typos
1 parent eef9417 commit a83adfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/ref/choice_maps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ ValueChoiceMap
1717
### Example Usage Overview
1818

1919
Choicemaps store values nested in a tree where each node posesses an address for each subtree.
20-
A leaf-node choicemap simply contains a value, and has it's value looked up via:
20+
A leaf-node choicemap simply contains a value, and has its value looked up via:
2121
```julia
2222
value = choicemap[]
2323
```
24-
If a choicemap has a value choicemap at address `:a`, it is looked up via:
24+
If a choicemap has a value choicemap at address `:a`, the value it stores is looked up via:
2525
```julia
2626
value = choicemap[:a]
2727
```
28-
And a choicemap may also have a non-value choicemap stored at a value. For instance,
28+
A choicemap may also have a non-value choicemap stored at an address. For instance,
2929
if a choicemap has another choicemap stored at address `:a`, and this internal choicemap
3030
has a valuechoicemap stored at address `:b` and another at `:c`, we could perform the following lookups:
3131
```julia

0 commit comments

Comments
 (0)