From e8b983ffdb2ec5f743ede8b2945c85b205a99679 Mon Sep 17 00:00:00 2001 From: Alistair Johnson Date: Mon, 16 Jan 2017 14:57:30 -0500 Subject: [PATCH] fix typo --- tutorials/cohort-selection.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." ]