@@ -59,7 +59,8 @@ class Value(Generic[T]):
5959
6060 Returns
6161 -------
62- An instance of a reactive value.
62+ :
63+ An instance of a reactive value.
6364
6465 Raises
6566 ------
@@ -114,7 +115,8 @@ def get(self) -> T:
114115
115116 Returns
116117 -------
117- A value.
118+ :
119+ A value.
118120
119121 Raises
120122 ------
@@ -142,7 +144,8 @@ def set(self, value: T) -> bool:
142144
143145 Returns
144146 -------
145- ``True`` if the value was set to a different value and ``False`` otherwise.
147+ :
148+ ``True`` if the value was set to a different value and ``False`` otherwise.
146149
147150 Raises
148151 ------
@@ -174,7 +177,8 @@ def unset(self) -> None:
174177
175178 Returns
176179 -------
177- ``True`` if the value was set prior to this unsetting.
180+ :
181+ ``True`` if the value was set prior to this unsetting.
178182 """
179183 self .set (MISSING ) # type: ignore
180184
@@ -184,7 +188,8 @@ def is_set(self) -> bool:
184188
185189 Returns
186190 -------
187- ``True`` if the value is set, ``False`` otherwise.
191+ :
192+ ``True`` if the value is set, ``False`` otherwise.
188193 """
189194
190195 self ._is_set_dependents .register ()
@@ -400,7 +405,8 @@ def Calc(
400405
401406 Returns
402407 -------
403- A decorator that marks a function as a reactive calculation.
408+ :
409+ A decorator that marks a function as a reactive calculation.
404410
405411 Tip
406412 ---
@@ -679,7 +685,8 @@ def Effect(
679685
680686 Returns
681687 -------
682- A decorator that marks a function as a reactive effect (:class:`Effect_`).
688+ :
689+ A decorator that marks a function as a reactive effect (:class:`Effect_`).
683690
684691 See Also
685692 --------
@@ -740,7 +747,8 @@ def event(
740747
741748 Returns
742749 -------
743- A decorator that marks a function as an event handler.
750+ :
751+ A decorator that marks a function as an event handler.
744752
745753 Tip
746754 ----
0 commit comments