From ca0f71a9248813783bc05cadf0354a0a4eea62d4 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 11 Feb 2019 17:09:38 -0500 Subject: [PATCH 1/3] spelling: compatibility --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dd7df14..fc5acd3 100644 --- a/Makefile +++ b/Makefile @@ -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: From 05ae9dcb6c1eaacc4f49e75d6da46f86644048b8 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 11 Feb 2019 17:09:48 -0500 Subject: [PATCH 2/3] spelling: convertible --- src/js.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js.erl b/src/js.erl index 05f5e2b..4c16c57 100644 --- a/src/js.erl +++ b/src/js.erl @@ -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). From 6a78f1bfa9308dc4464817b3fad4c0e4e5a93b4e Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 11 Feb 2019 17:12:22 -0500 Subject: [PATCH 3/3] spelling: responsible --- src/js_driver.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js_driver.erl b/src/js_driver.erl index 31c4b80..2d15947 100644 --- a/src/js_driver.erl +++ b/src/js_driver.erl @@ -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).