Skip to content
Open
Show file tree
Hide file tree
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 Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This is a stub Makefile that invokes GNU make which will read the GNUmakefile
# instead of this file. This provides compatability on systems where GNU make is
# instead of this file. This provides compatibility on systems where GNU make is
# not the system 'make' (eg. most non-linux UNIXes).

all:
Expand Down
2 changes: 1 addition & 1 deletion src/js.erl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
%% args into JSON before sending them to Javascript. While this does
%% incur a certain amount of overhead it has the benefit of (mostly)
%% preserving types as they roundtrip between Erlang and Javascript.
%% Of course, this also means all Erlang values MUST BE convertable
%% Of course, this also means all Erlang values MUST BE convertible
%% into JSON. In practice, this is less restricting than it sounds.
-module(js).

Expand Down
4 changes: 2 additions & 2 deletions src/js_driver.erl
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
%% limitations under the License.

%% @doc This module manages all of the low-level details surrounding the
%% linked-in driver. It is reponsible for loading and unloading the driver
%% as needed. This module is also reponsible for creating and destroying
%% linked-in driver. It is responsible for loading and unloading the driver
%% as needed. This module is also responsible for creating and destroying
%% instances of Javascript VMs.

-module(js_driver).
Expand Down