From f61bcd5409aaf4ce22ffd700c8d27f1c5c2c59d1 Mon Sep 17 00:00:00 2001 From: Adam Ferriss Date: Thu, 17 Aug 2023 11:46:44 -0700 Subject: [PATCH] Update vertex.js typo linter --- src/core/shape/vertex.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/shape/vertex.js b/src/core/shape/vertex.js index 0755e649d4..324d8db20e 100644 --- a/src/core/shape/vertex.js +++ b/src/core/shape/vertex.js @@ -635,7 +635,7 @@ p5.prototype.endContour = function() { * * void main() { * - * // copy the instance ID to the fragment shder + * // copy the instance ID to the fragment shader * instanceId = gl_InstanceID; * vec4 positionVec4 = vec4(aPosition, 1.0); * @@ -660,7 +660,7 @@ p5.prototype.endContour = function() { * void main() { * vec4 red = vec4(1.0, 0.0, 0.0, 1.0); * vec4 blue = vec4(0.0, 0.0, 1.0, 1.0); - * + * * // Normalize the instance id * float normId = float(instanceID) / (numInstances - 1.0); *