From c1ad03ed0f472b061a017f5409b2a59d7d6c8c2b Mon Sep 17 00:00:00 2001 From: Craig Osterhout Date: Wed, 31 Jul 2024 15:37:52 -0700 Subject: [PATCH] fix typo in r guide Signed-off-by: Craig Osterhout --- content/language/r/develop.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/language/r/develop.md b/content/language/r/develop.md index 3ae72bde4a..1f36bbbbd3 100644 --- a/content/language/r/develop.md +++ b/content/language/r/develop.md @@ -30,8 +30,8 @@ $ git clone https://github.com/mfranzon/r-docker-dev.git To try the connection between the Shiny application and the local database you have to modify the `Dockerfile` changing the `COPY` instruction: ```diff --RUN src/ . -+RUN src_db/ . +-COPY src/ . ++COPY src_db/ . ``` ## Add a local database and persist data