Skip to content

Commit 9f719f9

Browse files
authored
Merge pull request #323 from ably/fix-MAP3b
Fix MAP3b should be `entries`
2 parents 8d6107f + 109e6a2 commit 9f719f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

textile/features.textile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,7 @@ h4. Map
15181518
* @(MAP2)@ @Map@ @Semantics@ enum has the following values in order from zero: @LWW@
15191519
* @(MAP3)@ The attributes available in a @Map@ are:
15201520
** @(MAP3a)@ @semantics@ @Semantics@ enum - the conflict-resolution semantics used by the map object
1521-
** @(MAP3b)@ @map@ @Dict<String, MapEntry>@ - the map entries, indexed by key
1521+
** @(MAP3b)@ @entries@ @Dict<String, MapEntry>@ - the map entries, indexed by key
15221522
* @(MAP4)@ The size of the @Map@ is calculated as follows:
15231523
** @(MAP4a)@ The size is the sum of the sizes of all map entries in @map@ property
15241524
*** @(MAP4a1)@ Includes the size of the @String@ key for the map entry
@@ -2487,7 +2487,7 @@ class CounterOp // COP*, internal
24872487

24882488
class Map // MAP*, internal
24892489
semantics: MapSemantics // MAP3a
2490-
map: Dict<String, MapEntry>? // MAP3b
2490+
entries: Dict<String, MapEntry>? // MAP3b
24912491

24922492
class Counter // CNT*, internal
24932493
count: Number? // CNT2a

0 commit comments

Comments
 (0)