diff options
author | Brad Bollenbach <bradb@30sleeps.com> | 2024-05-31 10:28:17 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-05-31 10:46:53 +0100 |
commit | b2962d978ac2b74ce9e7fa8af0f5432936271eb7 (patch) | |
tree | c27b4cee27b8351c16b8d548d79325eb4847c56d | |
parent | c5190f1a5f1fe5ca42a3d89f06c5186cf87eca25 (diff) | |
download | tour-b2962d978ac2b74ce9e7fa8af0f5432936271eb7.tar.gz tour-b2962d978ac2b74ce9e7fa8af0f5432936271eb7.zip |
Fix typo
-rw-r--r-- | src/content/chapter5_advanced_features/lesson07_multi_target_externals/en.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/chapter5_advanced_features/lesson07_multi_target_externals/en.html b/src/content/chapter5_advanced_features/lesson07_multi_target_externals/en.html index 6e02d36..be8eae9 100644 --- a/src/content/chapter5_advanced_features/lesson07_multi_target_externals/en.html +++ b/src/content/chapter5_advanced_features/lesson07_multi_target_externals/en.html @@ -8,7 +8,7 @@ </p> <p> You should try to implement functions for all targets, but this isn't always - possible due to incompatibilities in how IO and concurreny works in Erlang and + possible due to incompatibilities in how IO and concurrency works in Erlang and JavaScript. With Erlang concurrent IO is handled transparently by the runtime, while in JavaScript concurrent IO requires the use of promises or callbacks. If your code uses the Erlang style it is typically not possible to implement |