Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

fix typo #1909

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/frequently-asked-questions.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<h2>Why do I get a <code>ReferenceError</code> when trying to prepack my code?</h2>

<p class="align-left">
Trying to prepack a seemlingly simple program such as <code>global.result = UnknownProperty;</code> will cause a
Trying to prepack a seemingly simple program such as <code>global.result = UnknownProperty;</code> will cause a
<code>ReferenceError</code>. The reason is that Prepack actually runs the global code, not knowing anything else
about the environment. And the semantics of JavaScript is that an unknown identifier that cannot be resolved
causes a <code>ReferenceError</code>. You might want to invest into modeling your environment.
Expand Down