Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
musslick committed Oct 24, 2024
1 parent 58ba5ae commit 8faa871
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/examples/closed-loop-basic/notebooks/sweetbean.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"- a fixation cross is displayed for 1500 ms\n",
"- a set of two dot stimuli is displayed, one on the left and one on the right for 200ms. Each set contains a certain number of dots and the participant has to indicate whether the numbers of dots in the two sets are the same or different by pressing `y` or `n`.\n",
"\n",
"You can find more in-depth tutorials on automated web experiment generation at the [SweetBean Website](https://autoresearch.github.io/sweetbean/)).\n",
"You can find more in-depth tutorials on automated web experiment generation at the [SweetBean Website](https://autoresearch.github.io/sweetbean/).\n",
"\n"
]
},
Expand Down Expand Up @@ -224,7 +224,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Note that the dot stimulus is shown for 2000ms (``duration=2000``). It consits of two set of dots (``number_of_apertures=2``), which are parameterized by the two timeline variables ``number_of_oobs=[dot_stimulus_left, dot_stimulus_right]``. Finally, we allow participants to record a response on each stimulus, indicating whether the dots match or not by pressing the respective keys for `y` and `n` (``choices=[\"y\", \"n\"]``)"
"Note that the dot stimulus is shown for 2000ms (``duration=2000``). It consists of two set of dots (``number_of_apertures=2``), which are parameterized by the two timeline variables ``number_of_oobs=[dot_stimulus_left, dot_stimulus_right]``. Finally, we allow participants to record a response on each stimulus, indicating whether the dots match or not by pressing the respective keys for `y` and `n` (``choices=[\"y\", \"n\"]``)"
]
},
{
Expand Down Expand Up @@ -274,7 +274,7 @@
"# define the entire experiment\n",
"experiment = Experiment([instruction_block, task_block, exit_block])\n",
"\n",
"# export expeirment to html file\n",
"# export experiment to html file\n",
"experiment.to_html(\"psychophysics_experiment.html\")"
]
},
Expand All @@ -291,7 +291,7 @@
"source": [
"## Writing a Function to Automate the Generation of Stimulus Sequences\n",
"\n",
"The function below compiles the code above into a single function, and returns a web-based (java script) experiment, written in ``jsPsych``.\n",
"The function below compiles the code above into a single function, and returns a web-based (JavaScript) experiment, written in ``jsPsych``.\n",
"\n",
"The function takes a timeline, containing a sequence of trials, as input, along with the two levels for the dot stimuli."
]
Expand Down

0 comments on commit 8faa871

Please sign in to comment.