From dc3d5a8fbfd8f4197f78a6e0b11678ae522a19d4 Mon Sep 17 00:00:00 2001 From: Wes B Date: Thu, 1 Feb 2024 09:49:29 -0800 Subject: [PATCH] fixed a typo --- 04_debugging.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04_debugging.Rmd b/04_debugging.Rmd index 6418e07..9035484 100644 --- a/04_debugging.Rmd +++ b/04_debugging.Rmd @@ -551,7 +551,7 @@ cat(tb) The error is generated in the `resample()` function, which is one of the functions in the script you downloaded. You can identify which line of that code matches the code reported in the error message, which tells us that the error is generated on line 13 of `debug_case_study.R`. -Remember tha the location of an error and the cause of the error are not always the same thing. To try and understand the cause of the error, let's start the debugger by putting a `browser()` call just before line 13, like this: +Remember that the location of an error and the cause of the error are not always the same thing. To try and understand the cause of the error, let's start the debugger by putting a `browser()` call just before line 13, like this: ```{r resample-with-browser} #| eval: false