Skip to content

Commit 142768a

Browse files
committed
Fix MAP3b should be entries
It should never have been named `map`, it was a type in #298
1 parent aa1bccd commit 142768a

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
@@ -1509,7 +1509,7 @@ h4. Map
15091509
* @(MAP2)@ @Map@ @Semantics@ enum has the following values in order from zero: @LWW@
15101510
* @(MAP3)@ The attributes available in a @Map@ are:
15111511
** @(MAP3a)@ @semantics@ @Semantics@ enum - the conflict-resolution semantics used by the map object
1512-
** @(MAP3b)@ @map@ @Dict<String, MapEntry>@ - the map entries, indexed by key
1512+
** @(MAP3b)@ @entries@ @Dict<String, MapEntry>@ - the map entries, indexed by key
15131513
* @(MAP4)@ The size of the @Map@ is calculated as follows:
15141514
** @(MAP4a)@ The size is the sum of the sizes of all map entries in @map@ property
15151515
*** @(MAP4a1)@ Includes the size of the @String@ key for the map entry
@@ -2478,7 +2478,7 @@ class CounterOp // COP*, internal
24782478

24792479
class Map // MAP*, internal
24802480
semantics: MapSemantics // MAP3a
2481-
map: Dict<String, MapEntry>? // MAP3b
2481+
entries: Dict<String, MapEntry>? // MAP3b
24822482

24832483
class Counter // CNT*, internal
24842484
count: Number? // CNT2a

0 commit comments

Comments
 (0)