From fec54b41e5bbf7e8a6322aa540941380b3413249 Mon Sep 17 00:00:00 2001 From: Sotiri Bakagiannis Date: Wed, 19 Aug 2020 16:18:42 +0100 Subject: [PATCH] util/PsychObject: fix comment typo --- js/util/PsychObject.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/util/PsychObject.js b/js/util/PsychObject.js index 8a170e8..a4575aa 100644 --- a/js/util/PsychObject.js +++ b/js/util/PsychObject.js @@ -335,7 +335,7 @@ export class PsychObject extends EventEmitter // Objects that belong to us such as colors feature a `toString()` // method, exclude others that don't, important in turn when figuring - // out a `hasChanged` in a `ShapeStim.setPost()` for example + // out a `hasChanged` in a `ShapeStim.setPos()` for example return prev !== 'Object (circular)' && next !== 'Object (circular)' && prev !== next; }