From 3e65247453c0a0a13a0d4b59fad6cdb981141f31 Mon Sep 17 00:00:00 2001 From: QuantScripter <95710662+devpowerplatform@users.noreply.github.com> Date: Wed, 17 Jul 2024 09:00:10 -0500 Subject: [PATCH] fix: Correct the duplicate R function name (#163) Co-authored-by: Joe Cheng --- docs/comp-r-shiny.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/comp-r-shiny.qmd b/docs/comp-r-shiny.qmd index 20c284be..212fb7c5 100644 --- a/docs/comp-r-shiny.qmd +++ b/docs/comp-r-shiny.qmd @@ -331,9 +331,9 @@ For the most part you can follow this naming pattern to find the function you're | R Function | Python Equivalent | |-----------------------------------|-------------------------------------| -| `observeEvent` | `@reactive.effect` | +| `observe` | `@reactive.effect` | | `reactive` | `@reactive.calc` | -| `bindEvent` | `@ractive.event` | +| `bindEvent` | `@reactive.event` | | `reactiveEvent` | `@reactive.calc` with `@reactive.event` | | `observeEvent` | `@reactive.effect` with `@reactive.event` | | `htmlTemplate` | `page_template` |