@@ -16,7 +16,8 @@ signature module Input {
16
16
17
17
// Relating content and filters
18
18
/**
19
- * Gets a content filter to use for a `WithoutContent[content]` step, or has no result if
19
+ * Gets a content filter to use for a `WithoutContent[content]` step, (data is not allowed to be stored in `content`)
20
+ * or has no result if
20
21
* the step should be treated as ordinary flow.
21
22
*
22
23
* `WithoutContent` is often used to perform strong updates on individual collection elements, but for
@@ -26,7 +27,8 @@ signature module Input {
26
27
TypeTrackerContentFilter getFilterFromWithoutContentStep ( TypeTrackerContent content ) ;
27
28
28
29
/**
29
- * Gets a content filter to use for a `WithContent[content]` step, or has no result if
30
+ * Gets a content filter to use for a `WithContent[content]` step, (data must be stored in `content`)
31
+ * or has no result if
30
32
* the step cannot be handled by type-tracking.
31
33
*
32
34
* `WithContent` is often used to perform strong updates on individual collection elements (or rather
@@ -48,7 +50,7 @@ signature module Input {
48
50
/**
49
51
* Gets the stack obtained by pushing `head` onto `tail`.
50
52
*/
51
- SummaryComponentStack push ( SummaryComponent component , SummaryComponentStack stack ) ;
53
+ SummaryComponentStack push ( SummaryComponent head , SummaryComponentStack tail ) ;
52
54
53
55
/** Gets a singleton stack representing a return. */
54
56
SummaryComponent return ( ) ;
@@ -57,10 +59,10 @@ signature module Input {
57
59
/** Gets a summary component for content `c`. */
58
60
SummaryComponent content ( TypeTrackerContent contents ) ;
59
61
60
- /** Gets a summary component where data is not allowed to be stored in `c `. */
62
+ /** Gets a summary component where data is not allowed to be stored in `contents `. */
61
63
SummaryComponent withoutContent ( TypeTrackerContent contents ) ;
62
64
63
- /** Gets a summary component where data must be stored in `c `. */
65
+ /** Gets a summary component where data must be stored in `contents `. */
64
66
SummaryComponent withContent ( TypeTrackerContent contents ) ;
65
67
66
68
// Callables
0 commit comments