Skip to content

Commit 403e5f2

Browse files
authored
fix docs typos (#1061)
1 parent bd60e6e commit 403e5f2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: docs/source/guides/adding-interactivity/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ Section 1: Responding to Events
5858

5959
ReactPy lets you add event handlers to your parts of the interface. This means that you can
6060
define synchronous or asynchronous functions that are triggered when a particular user
61-
interaction occurs like clicking, hovering, of focusing on form inputs, and more.
61+
interaction occurs like clicking, hovering, focusing on form inputs, and more.
6262

6363
.. reactpy:: responding-to-events/_examples/button_prints_message
6464

6565
It may feel weird to define a function within a function like this, but doing so allows
6666
the ``handle_event`` function to access information from within the scope of the
67-
component. That's important if you want to use any arguments that may have beend passed
67+
component. That's important if you want to use any arguments that may have been passed
6868
your component in the handler.
6969

7070
.. card::

Diff for: docs/source/guides/adding-interactivity/responding-to-events/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To add an event handler to this button we'll do three things:
2929

3030
It may feel weird to define a function within a function like this, but doing so allows
3131
the ``handle_event`` function to access information from within the scope of the
32-
component. That's important if you want to use any arguments that may have beend passed
32+
component. That's important if you want to use any arguments that may have been passed
3333
your component in the handler:
3434

3535
.. reactpy:: _examples/button_prints_message

Diff for: docs/source/guides/creating-interfaces/rendering-data/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ We could then add this code to our ``DataList`` component:
103103

104104
.. warning::
105105

106-
The code below produces a bunch of warnings! Be sure to tead the
106+
The code below produces a bunch of warnings! Be sure to read the
107107
:ref:`next section <Organizing Items With Keys>` to find out why.
108108

109109
.. reactpy:: _examples/sorted_and_filtered_todo_list

0 commit comments

Comments
 (0)