From 87cc11e2a23c0fdd2c936a896f1bf2806d0bb2f6 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Sun, 31 Mar 2024 16:00:15 -0500 Subject: [PATCH] fixed spellings --- www/news-articles/release-0.1.10.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/news-articles/release-0.1.10.html b/www/news-articles/release-0.1.10.html index 604d17c..3925b2e 100644 --- a/www/news-articles/release-0.1.10.html +++ b/www/news-articles/release-0.1.10.html @@ -1,7 +1,7 @@

JavaScript Interop

Onyx now has a proper JavaScript interop layer, which makes using Onyx from JavaScript easier than ever. - This interop comes in two parts: the #js directive and the code.js package. + This interop comes in two parts: the #js directive and the core.js package.

The #js directive is used to include JS source code in the project. @@ -21,7 +21,7 @@ // Specify order of JS partial with an int literal // Lower numbers are inserted first -#js 100 #file "./source.js" +#js #order 100 #file "./source.js"

@@ -77,8 +77,8 @@ main :: () {

While this is a very low-level interface to JavaScript, it does enable Onyx - to be used in a whole new class of applications on the web. More auxillary packages - can be developed to provide specialized APIs for comming things such as the DOM, WebSockets, + to be used in a whole new class of applications on the web. More auxiliary packages + can be developed to provide specialized APIs for coming things such as the DOM, WebSockets, or WebGL.

-- 2.25.1