Skip to content

Commit 6cc6078

Browse files
authored
Merge pull request #323 from ably/fix-MAP3b
Fix MAP3b should be `entries`
2 parents 358119c + f78c55e commit 6cc6078

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

specifications/features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1855,7 +1855,7 @@ Presence ops.
18551855
- `(MAP2)` `Map` `Semantics` enum has the following values in order from zero: `LWW`
18561856
- `(MAP3)` The attributes available in a `Map` are:
18571857
- `(MAP3a)` `semantics` `Semantics` enum - the conflict-resolution semantics used by the map object
1858-
- `(MAP3b)` `map` `Dict<String, MapEntry>` - the map entries, indexed by key
1858+
- `(MAP3b)` `entries` `Dict<String, MapEntry>` - the map entries, indexed by key
18591859
- `(MAP4)` The size of the `Map` is calculated as follows:
18601860
- `(MAP4a)` The size is the sum of the sizes of all map entries in `map` property
18611861
- `(MAP4a1)` Includes the size of the `String` key for the map entry
@@ -2839,7 +2839,7 @@ Each type, method, and attribute is labelled with the name of one or more clause
28392839

28402840
class Map // MAP*, internal
28412841
semantics: MapSemantics // MAP3a
2842-
map: Dict<String, MapEntry>? // MAP3b
2842+
entries: Dict<String, MapEntry>? // MAP3b
28432843

28442844
class Counter // CNT*, internal
28452845
count: Number? // CNT2a

0 commit comments

Comments
 (0)