diff --git a/README.md b/README.md index 56bf326a..132b823a 100644 --- a/README.md +++ b/README.md @@ -149,10 +149,12 @@ var debrief = { .filter({stim_type: 'congruent'}).select('rt').mean()); var incongruent_rt = Math.round(jsPsych.data.get() .filter({stim_type: 'incongruent'}).select('rt').mean()); - return "

Your average response time for congruent trials"+ - "was "+congruent_rt+"ms.

"+ - "

Your average response time for incongruent trials was"+ - ""incongruent_rt + "ms.

"; + return "

Your average response"+ + "time for congruent trials was "+congruent_rt+ + "ms.

"+ + "

Your average response time for"+ + "incongruent trials was "incongruent_rt + + "ms.

"; } };