Skip to content

Commit 8bbfbf8

Browse files
Editorial: remove optional from chunk parameter in QueuingStrategySize
Since this is used as the input type in the init dictionaries, and the spec always calls the function with an argument, the optional is not necessary.
1 parent 361897c commit 8bbfbf8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.bs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5861,7 +5861,7 @@ dictionary QueuingStrategy {
58615861
QueuingStrategySize size;
58625862
};
58635863

5864-
callback QueuingStrategySize = unrestricted double (optional any chunk);
5864+
callback QueuingStrategySize = unrestricted double (any chunk);
58655865
</xmp>
58665866

58675867
<dl>

reference-implementation/lib/QueuingStrategy.webidl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ dictionary QueuingStrategy {
33
QueuingStrategySize size;
44
};
55

6-
callback QueuingStrategySize = unrestricted double (optional any chunk);
6+
callback QueuingStrategySize = unrestricted double (any chunk);

0 commit comments

Comments
 (0)