Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes a few spelling mistakes #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<h3>
<a id="whatIsStjs">What is ST-JS</a>
</h3>
<p>ST-JS is a Java-to-JavaScript transpiler. It's goal is to let
<p>ST-JS is a Java-to-JavaScript transpiler. Its goal is to let
you write true JavaScript while borrowing the syntax and type
checking of Java.</p>
<p>ST-JS lets you write your client-side code in Java, and will
Expand Down Expand Up @@ -151,8 +151,8 @@ <h3><a id="howDoesItWork">How does it work?</a></h3>
HTML page, before all the generated JavaScript. This file is the only mandatory runtime dependency for ST-JS.
</li>
<li>
<strong>jquery bridge:</strong> A Java library that exposes a properly typed version of the jQuery API. It's purpose
and usage is similar to js-lib, but for jQuery. Note that jQuery is not a dependency of ST-JS, and using this bridge is
<strong>jquery bridge:</strong> A Java library that exposes a properly typed version of the jQuery API. Its purpose
and usage are similar to js-lib, but for jQuery. Note that jQuery is not a dependency of ST-JS, and using this bridge is
not mandatory.
</li>
<li>
Expand Down Expand Up @@ -442,7 +442,7 @@ <h5>Inheritance</h5>
<h5>Comparison</h5>
<p>
The comparison of objects or primitives is slightly different
between Java and Javscript. For example <i>equals</i> method does
between Java and Javascript. For example <i>equals</i> method does
not exist in JavaScript (and there is no way to influence how
egality operators behave in JavaScript).<br /> Conversely the
triple "=" (===) does not exist in Java. And the "==" sign has a
Expand Down