1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-11 16:18:10 +00:00

util/PsychObject: fix comment typo

This commit is contained in:
Sotiri Bakagiannis 2020-08-19 16:18:42 +01:00
parent 056ea555e5
commit fec54b41e5

View File

@ -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;
}