Skip to content

Commit

Permalink
Editorial: Fix delimiters on String "literals"
Browse files Browse the repository at this point in the history
The change from backticks to asterisks occurred a few weeks ago via PR tc39#1733.
Looks like the merge of PR tc39#1479 accidentally reverted it for this one line.
  • Loading branch information
jmdyck committed Nov 14, 2019
1 parent f061956 commit 4e7c403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -25809,7 +25809,7 @@ <h1>Runtime Semantics: CreateDynamicFunction ( _constructor_, _newTarget_, _kind
1. NOTE: Async functions are not constructable and do not have a [[Construct]] internal method or a *"prototype"* property.
1. Perform SetFunctionName(_F_, *"anonymous"*).
1. Let _prefix_ be the prefix associated with _kind_ in <emu-xref href="#table-dynamic-function-sourcetext-prefixes"></emu-xref>.
1. Let _sourceText_ be the string-concatenation of _prefix_, `" anonymous("`, _P_, 0x000A (LINE FEED), `") {"`, _bodyText_, and `"}"`.
1. Let _sourceText_ be the string-concatenation of _prefix_, *" anonymous("*, _P_, 0x000A (LINE FEED), *") {"*, _bodyText_, and *"}"*.
1. Set _F_.[[SourceText]] to _sourceText_.
1. Return _F_.
</emu-alg>
Expand Down

0 comments on commit 4e7c403

Please sign in to comment.