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

data/TrialHandler: clean up comment

This commit is contained in:
Sotiri Bakagiannis 2020-09-08 16:23:57 +01:00
parent b65c9b8489
commit d069665571

View File

@ -475,7 +475,7 @@ export class TrialHandler extends PsychObject
// Keep the first match if more than one are found. If the
// input string looked like '[1, 2][3, 4]' for example,
// the resulting `value` would be [1, 2]. When `arrayMaybe` is
// empty, value turns `undefined`. At this point that might
// empty, `value` turns `undefined`. At this point that might
// only happen if `value` is an empty array to begin with.
value = arrayMaybe[0];
}