From 542d8a4b6cb292bc1e5bdd40c8b69675345c665d Mon Sep 17 00:00:00 2001 From: ericrius1 Date: Thu, 24 Dec 2015 12:06:29 -0800 Subject: [PATCH] Fixed spelling mistakes --- examples/rayPickingFilterExample.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/rayPickingFilterExample.js b/examples/rayPickingFilterExample.js index a373840e72..73d151847b 100644 --- a/examples/rayPickingFilterExample.js +++ b/examples/rayPickingFilterExample.js @@ -52,9 +52,10 @@ function castRay(event) { var pickRay = Camera.computePickRay(event.x, event.y); // In this example every entity will be pickable except the entities in the blacklist array - // the third arg is the whitelist array,a nd the fourth and final is the blacklist array + // the third argument is the whitelist array,and the fourth and final is the blacklist array var pickResults = Entities.findRayIntersection(pickRay, true, [], [blackListBox]); - // With below example, only entities adde dto whitelist will be pickable + + // With below example, only entities added to whitelist will be pickable // var pickResults = Entities.findRayIntersection(pickRay, true, [whiteListBox], []); if (pickResults.intersects) {