Skip to content

Commit

Permalink
Editorial: Correct "set" to "let"
Browse files Browse the repository at this point in the history
Editorial: Correct "set" to "let"

These uses introduce the variable, so must be "set".
  • Loading branch information
jeremyroman authored Jan 9, 2025
1 parent 541a853 commit 3f8ef9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1324,12 +1324,12 @@ To <dfn>parse a pattern string</dfn> given a [=/pattern string=] |input|, [=/opt
</dl>
</div>
1. If |open token| is not null:
1. Set |prefix| be the result of running [=consume text=] given |parser|.
1. Let |prefix| be the result of running [=consume text=] given |parser|.
1. Set |name token| to the result of running [=try to consume a token=] given |parser| and "<a for=token/type>`name`</a>".
1. Set |regexp or wildcard token| to the result of running [=try to consume a regexp or wildcard token=] given |parser| and |name token|.
1. Let |suffix| be the result of running [=consume text=] given |parser|.
1. Run [=consume a required token=] given |parser| and "<a for=token/type>`close`</a>".
1. Set |modifier token| to the result of running [=try to consume a modifier token=] given |parser|.
1. Let |modifier token| be the result of running [=try to consume a modifier token=] given |parser|.
1. Run [=add a part=] given |parser|, |prefix|, |name token|, |regexp or wildcard token|, |suffix|, and |modifier token|.
1. [=Continue=].
1. Run [=maybe add a part from the pending fixed value=] given |parser|.
Expand Down

0 comments on commit 3f8ef9a

Please sign in to comment.