Browse Source

Fix typos with codespell (#305)

Christian Clauss 2 years ago
parent
commit
eca91beab2
3 changed files with 3 additions and 3 deletions
  1. 1 1
      README.md
  2. 1 1
      pynecone/components/component.py
  3. 1 1
      pynecone/event.py

+ 1 - 1
README.md

@@ -201,7 +201,7 @@ You can create a multi-page app by adding more routes.
 
 As of December 2022, Pynecone has just been released publicly and is in the **Alpha Stage**.
 
- - :large_orange_diamond: **Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them activly.
+ - :large_orange_diamond: **Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them actively.
  - **Public Beta**: Stable enough for non-enterprise use-cases.
  - **Public Hosting Beta**: **Optionally** Deploy and Host your own apps on Pynecone!
  - **Public**: Pynecone is production ready.

+ 1 - 1
pynecone/components/component.py

@@ -315,7 +315,7 @@ class Component(Base, ABC):
             # Extract the style for this component.
             component_style = Style(style[type(self)])
 
-            # Only add stylee props that are not overriden.
+            # Only add stylee props that are not overridden.
             component_style = {
                 k: v for k, v in component_style.items() if k not in self.style
             }

+ 1 - 1
pynecone/event.py

@@ -18,7 +18,7 @@ class Event(Base):
     # The event name.
     name: str
 
-    # The routing data where event occured
+    # The routing data where event occurred
     router_data: Dict[str, Any] = {}
 
     # The event payload.