Skip to content

Commit cc20200

Browse files
authored
Merge pull request #323 from ably/fix-MAP3b
Fix MAP3b should be `entries`
2 parents a91af2a + b495a25 commit cc20200

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/features.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4761,8 +4761,8 @@ Presence ops.
47614761
- `(MAP3)` The attributes available in a `Map` are:
47624762
- `(MAP3a)` `semantics` `Semantics` enum - the conflict-resolution
47634763
semantics used by the map object
4764-
- `(MAP3b)` `map` `Dict<String, MapEntry>` - the map entries, indexed
4765-
by key
4764+
- `(MAP3b)` `entries` `Dict<String, MapEntry>` - the map entries,
4765+
indexed by key
47664766
- `(MAP4)` The size of the `Map` is calculated as follows:
47674767
- `(MAP4a)` The size is the sum of the sizes of all map entries in
47684768
`map` property
@@ -6278,7 +6278,7 @@ wildcard to mean all clauses with a given prefix.
62786278

62796279
class Map // MAP*, internal
62806280
semantics: MapSemantics // MAP3a
6281-
map: Dict<String, MapEntry>? // MAP3b
6281+
entries: Dict<String, MapEntry>? // MAP3b
62826282

62836283
class Counter // CNT*, internal
62846284
count: Number? // CNT2a

0 commit comments

Comments
 (0)