diff --git a/tutorials/cohort-selection.ipynb b/tutorials/cohort-selection.ipynb index c003d69..bd0bf43 100644 --- a/tutorials/cohort-selection.ipynb +++ b/tutorials/cohort-selection.ipynb @@ -151,7 +151,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Note: in the above we use `LIMIT 10`: this limits our results to only 5 rows. It's nice to include this statement when prototyping as it speeds up queries immensely. Later on when we are doing full data extraction, we would remove this statement.\n", + "Note: in the above we use `LIMIT 10`: this limits our results to only 10 rows. It's nice to include this statement when prototyping as it speeds up queries immensely. Later on when we are doing full data extraction, we would remove this statement.\n", "\n", "If we are interested in the length of stay for the ICU patients, we can query the `intime` and `outtime` columns, adding in some SQL specific syntax for calculating the difference between two dates." ]