Skip to content

Commit

Permalink
Merge pull request #118 from immersive-web/no-frozen-arrays
Browse files Browse the repository at this point in the history
Stop using FrozenArray in dictionaries
  • Loading branch information
toji authored Jun 11, 2024
2 parents 16c4842 + c3e894e commit c77ff88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ An {{XRHitTestOptionsInit}} dictionary represents a set of configurable values t
<script type="idl">
dictionary XRHitTestOptionsInit {
required XRSpace space;
FrozenArray<XRHitTestTrackableType> entityTypes;
sequence<XRHitTestTrackableType> entityTypes;
XRRay offsetRay;
};
</script>
Expand All @@ -203,7 +203,7 @@ An {{XRTransientInputHitTestOptionsInit}} dictionary represents a set of configu
<script type="idl">
dictionary XRTransientInputHitTestOptionsInit {
required DOMString profile;
FrozenArray<XRHitTestTrackableType> entityTypes;
sequence<XRHitTestTrackableType> entityTypes;
XRRay offsetRay;
};
</script>
Expand Down Expand Up @@ -647,7 +647,7 @@ The <dfn>distance along the ray</dfn>, |distance|, from {{XRRay}} |ray| to any e

</div>

Native device concepts {#native-device-concepts}
Native device concepts {#native-device-concepts}
======================

<section class="non-normative">
Expand Down

0 comments on commit c77ff88

Please sign in to comment.