chore: fix some typos in comments (#3071)

This commit is contained in:
hugehope 2024-04-12 05:34:23 +08:00 committed by GitHub
parent a3cb475247
commit 713ee06ab7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 7 additions and 7 deletions

View File

@ -18,7 +18,7 @@ class PinInput(ChakraComponent):
tag = "PinInput" tag = "PinInput"
# State var to bind the the input. # State var to bind the input.
value: Var[str] value: Var[str]
# If true, the pin input receives focus on mount # If true, the pin input receives focus on mount

View File

@ -110,7 +110,7 @@ class PinInput(ChakraComponent):
Args: Args:
*children: The children of the component. *children: The children of the component.
value: State var to bind the the input. value: State var to bind the input.
auto_focus: If true, the pin input receives focus on mount auto_focus: If true, the pin input receives focus on mount
default_value: The default value of the pin input default_value: The default value of the pin input
error_border_color: The border color when the input is invalid. error_border_color: The border color when the input is invalid.

View File

@ -17,7 +17,7 @@ class RadioGroup(ChakraComponent):
tag = "RadioGroup" tag = "RadioGroup"
# State var to bind the the input. # State var to bind the input.
value: Var[Any] value: Var[Any]
# The default value. # The default value.

View File

@ -86,7 +86,7 @@ class RadioGroup(ChakraComponent):
Args: Args:
*children: The children of the component. *children: The children of the component.
value: State var to bind the the input. value: State var to bind the input.
default_value: The default value. default_value: The default value.
name: The name of the form field name: The name of the form field
style: The style of the component. style: The style of the component.

View File

@ -15,7 +15,7 @@ class RangeSlider(ChakraComponent):
tag = "RangeSlider" tag = "RangeSlider"
# State var to bind the the input. # State var to bind the input.
value: Var[List[int]] value: Var[List[int]]
# The default values. # The default values.

View File

@ -103,7 +103,7 @@ class RangeSlider(ChakraComponent):
Args: Args:
*children: The children of the component. *children: The children of the component.
value: State var to bind the the input. value: State var to bind the input.
default_value: The default values. default_value: The default values.
direction: The writing mode ("ltr" | "rtl") direction: The writing mode ("ltr" | "rtl")
focus_thumb_on_change: If false, the slider handle will not capture focus when value changes. focus_thumb_on_change: If false, the slider handle will not capture focus when value changes.

View File

@ -371,7 +371,7 @@ class Component(BaseComponent, ABC):
"""Create an event chain from a variety of input types. """Create an event chain from a variety of input types.
Args: Args:
args_spec: The args_spec of the the event trigger being bound. args_spec: The args_spec of the event trigger being bound.
value: The value to create the event chain from. value: The value to create the event chain from.
Returns: Returns: