Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Yutaka Hirano committed Jun 16, 2021
1 parent de29e5e commit 4c11ddc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -368,15 +368,15 @@ A {{DatagramDuplexStream}} object has the following internal slots.
1. Return [=this=]'s [=[[IncomingDatagramsExpirationDuration]]=].
:: The setter steps are:
1. Let |value| be the given value.
1. If |value| > 0:
1. If |value| is null or |value| > 0:
1. Set [=this=]'s [=[[IncomingDatagramsExpirationDuration]]=] to |value|.

: <dfn for="DatagramDuplexStream" attribute>outgoingMaxAge</dfn>
:: The getter steps are:
1. Return [=this=]'s [=[[OutgoingDatagramsExpirationDuration]]=].
:: The setter steps are:
1. Let |value| be the given value.
1. If |value| > 0:
1. If |value| is null or |value| > 0:
1. Set [=this=]'s [=[[OutgoingDatagramsExpirationDuration]]=] to |value|.

: <dfn for="DatagramDuplexStream" attribute>incomingHighWaterMark</dfn>
Expand Down

0 comments on commit 4c11ddc

Please sign in to comment.