From 2282be5ef2899daefa4ca4704c8792776d77b5b1 Mon Sep 17 00:00:00 2001
From: Lesmana Zimmer
Date: Wed, 21 Oct 2015 04:57:48 +0200
Subject: [PATCH 1/3] Fix link typo (remove "reference")
---
articles/_posts/2011-12-02-RenderingModes.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/articles/_posts/2011-12-02-RenderingModes.html b/articles/_posts/2011-12-02-RenderingModes.html
index 30fa0c9..64479e7 100644
--- a/articles/_posts/2011-12-02-RenderingModes.html
+++ b/articles/_posts/2011-12-02-RenderingModes.html
@@ -230,7 +230,7 @@
href="http://processingjs.org/download">http://processingjs.org/download).
It is essentially the same as Processing.js, but without the code parser (i.e.,
you can use the API either way, but the Processing.js API is a somewhat smaller
- file). See
+ file). See
Writing JavaScript-only Processing.js Code for more details.
Accessing the Raw Canvas Context - Advanced:
From dc884b6bdde5f424dd232fd2227cd925a65bd8e5 Mon Sep 17 00:00:00 2001
From: Lesmana Zimmer
Date: Wed, 21 Oct 2015 05:05:51 +0200
Subject: [PATCH 2/3] Fix typo (langauge -> language)
---
articles/_posts/2011-12-02-RenderingModes.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/articles/_posts/2011-12-02-RenderingModes.html b/articles/_posts/2011-12-02-RenderingModes.html
index 64479e7..0a5d36f 100644
--- a/articles/_posts/2011-12-02-RenderingModes.html
+++ b/articles/_posts/2011-12-02-RenderingModes.html
@@ -215,9 +215,9 @@
different arguments for points in 2D or 3D space). By learning the Processing syntax,
it's easy to create complex 2D and WebGL graphics without ever touching the underlying
graphics APIs. This is true of Processing and Java, and also of Processing.js and
- canvas/WebGL. The Processing langauge provides a powerful and beginner friendly
+ canvas/WebGL. The Processing language provides a powerful and beginner friendly
on-ramp to canvas 2D and WebGL. Consult the
- Processing.js Langauge Reference for specific details on how to use each
+ Processing.js Language Reference for specific details on how to use each
function.
Using the Processing.js API in JavaScript
From 8e9469a1882980b412a37769e85a91c3ace8406b Mon Sep 17 00:00:00 2001
From: Lesmana Zimmer
Date: Sun, 1 Nov 2015 09:06:09 +0100
Subject: [PATCH 3/3] fix typo (x -> y)
---
articles/_posts/2011-12-01-PomaxGuide.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/articles/_posts/2011-12-01-PomaxGuide.html b/articles/_posts/2011-12-01-PomaxGuide.html
index 96b91b6..d713fc1 100644
--- a/articles/_posts/2011-12-01-PomaxGuide.html
+++ b/articles/_posts/2011-12-01-PomaxGuide.html
@@ -826,7 +826,7 @@ Making your sketch "se
{% highlight javascript linenos %}
function showXYCoordinates(x, y) {
document.getElementById('xcoord').value = x;
- document.getElementById('ycoord').value = x;
+ document.getElementById('ycoord').value = y;
}{% endhighlight %}
And we'll need to make the sketch know that there is such a thing as javascript,