From a66836f99b398e72986426d5ecfd85c7a7670867 Mon Sep 17 00:00:00 2001 From: StevenGeysen Date: Wed, 7 Dec 2022 13:00:42 +0100 Subject: [PATCH] Fix spelling Example 0.0 (#230) * fix spelling * fix spelling --- examples/example-0-aln-minimal.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/example-0-aln-minimal.ipynb b/examples/example-0-aln-minimal.ipynb index 03abe8da..c95ba13e 100644 --- a/examples/example-0-aln-minimal.ipynb +++ b/examples/example-0-aln-minimal.ipynb @@ -78,7 +78,7 @@ "# Create the model\n", "model = ALNModel()\n", "\n", - "# Each model comes with a set of default parameters which are are a dictionary. \n", + "# Each model comes with a set of default parameters which are a dictionary. \n", "# Let's change the parameter that controls the duration of a simulation to 10s.\n", "model.params['duration'] = 10.0 * 1000 \n", "\n", @@ -512,7 +512,7 @@ "source": [ "For convenience, they can also be accessed directly using attributes of the model with the outputs name, like `model.rates_exc`. The outputs are also available as xr DataArrays as `model.xr()`.\n", "\n", - "The since we used `bold=True` to simulate BOLD, we can also access `model.BOLD.BOLD` for the actual BOLD activity, and `model.BOLD.t` for the time steps of the BOLD simulation (which are downsampled to `0.5 Hz` by default)." + "Since we used `bold=True` to simulate BOLD, we can also access `model.BOLD.BOLD` for the actual BOLD activity, and `model.BOLD.t` for the time steps of the BOLD simulation (which are downsampled to `0.5 Hz` by default)." ] }, {