@@ -43,7 +43,7 @@ class Reactive(Generic[ReactiveType]):
4343 layout (bool, optional): Perform a layout on change. Defaults to False.
4444 repaint (bool, optional): Perform a repaint on change. Defaults to True.
4545 init (bool, optional): Call watchers on initialize (post mount). Defaults to False.
46- always_update(bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
46+ always_update (bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
4747 """
4848
4949 def __init__ (
@@ -76,7 +76,7 @@ def init(
7676 default (ReactiveType | Callable[[], ReactiveType]): A default value or callable that returns a default.
7777 layout (bool, optional): Perform a layout on change. Defaults to False.
7878 repaint (bool, optional): Perform a repaint on change. Defaults to True.
79- always_update(bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
79+ always_update (bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
8080
8181 Returns:
8282 Reactive: A Reactive instance which calls watchers or initialize.
@@ -292,7 +292,7 @@ class reactive(Reactive[ReactiveType]):
292292 layout (bool, optional): Perform a layout on change. Defaults to False.
293293 repaint (bool, optional): Perform a repaint on change. Defaults to True.
294294 init (bool, optional): Call watchers on initialize (post mount). Defaults to True.
295- always_update(bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
295+ always_update (bool, optional): Call watchers even when the new value equals the old value. Defaults to False.
296296 """
297297
298298 def __init__ (
0 commit comments