From c5a763b65ec91a0cf188e33a285d45aa1e46143c Mon Sep 17 00:00:00 2001 From: Louise Deconinck Date: Tue, 10 Sep 2024 22:17:23 +0200 Subject: [PATCH] typo --- book/in_memory/pitfalls.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/in_memory/pitfalls.qmd b/book/in_memory/pitfalls.qmd index e653610..692fc1b 100644 --- a/book/in_memory/pitfalls.qmd +++ b/book/in_memory/pitfalls.qmd @@ -50,7 +50,7 @@ is.integer(int_ex) This can often lead to errors when using `reticulate`! If you're calling a Python function and provide it with just a number in R, it probably won't be recognised as an integer, leading to weird errors: -```{r float_integer_error error=true} +```{r float_integer_error, error=true} library(reticulate) bi <- reticulate::import_builtins()