Skip to content

Commit

Permalink
Fix infinite loops
Browse files Browse the repository at this point in the history
Thanks to @waldemarhorwat for pointing this out during his Stage 3 review.
  • Loading branch information
mathiasbynens committed Mar 22, 2022
1 parent 86e9a37 commit d0fd9b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -35173,15 +35173,15 @@ <h1>Static Semantics: MayContainStrings</h1>
</emu-alg>
<emu-grammar>ClassContents :: ClassUnion</emu-grammar>
<emu-alg>
1. Return MayContainStrings of the |ClassContents|.
1. Return MayContainStrings of the |ClassUnion|.
</emu-alg>
<emu-grammar>ClassContents :: ClassIntersection</emu-grammar>
<emu-alg>
1. Return MayContainStrings of the |ClassContents|.
1. Return MayContainStrings of the |ClassIntersection|.
</emu-alg>
<emu-grammar>ClassContents :: ClassSubtraction</emu-grammar>
<emu-alg>
1. Return MayContainStrings of the |ClassContents|.
1. Return MayContainStrings of the |ClassSubtraction|.
</emu-alg>
<emu-grammar>ClassUnion :: ClassRange ClassUnion?</emu-grammar>
<emu-alg>
Expand Down

0 comments on commit d0fd9b7

Please sign in to comment.