File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ ValueChoiceMap
1717### Example Usage Overview
1818
1919Choicemaps 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
2222value = 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
2626value = 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,
2929if a choicemap has another choicemap stored at address ` :a ` , and this internal choicemap
3030has a valuechoicemap stored at address ` :b ` and another at ` :c ` , we could perform the following lookups:
3131``` julia
You can’t perform that action at this time.
0 commit comments