Skip to content

Commit 02ee94c

Browse files
authored
fix spelling errors (#1158)
1 parent cccb619 commit 02ee94c

File tree

36 files changed

+92
-66
lines changed

36 files changed

+92
-66
lines changed

.codespellrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[codespell]
2+
skip = *.csv, *.json
3+
ignore-words-list = selectin

.github/workflows/codespell.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: codespell
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
jobs:
8+
codespell:
9+
name: Check for spelling errors
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v3
14+
- name: Codespell
15+
uses: codespell-project/actions-codespell@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Below are some good ways to get started in the Reflex community.
6969
- **Join our Discourse**: Our [forum](https://forum.reflex.dev/) is a great way to talk about features you want added or things that are confusing/need clarification.
7070
- **GitHub Issues**: [Issues](https://github.com/reflex-dev/reflex/issues) are an excellent way to report bugs. Additionally, you can try and solve an existing issue and submit a PR.
7171

72-
We are actively looking for contributors, no matter your skill level or experience. To contribute check out [CONTIBUTING.md](https://github.com/reflex-dev/reflex/blob/main/CONTRIBUTING.md)
72+
We are actively looking for contributors, no matter your skill level or experience. To contribute check out [CONTRIBUTING.md](https://github.com/reflex-dev/reflex/blob/main/CONTRIBUTING.md)
7373

7474
## License
7575

blog/2024-09-21-reflex-v060.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ The application state is reset when you stop a 'reflex run' and start it again.
118118

119119
Since moving our core components to Radix we have now moved Chakra into it's own 3rd party pip package.
120120
This means that we no longer bundle Chakra with Reflex.
121-
Instead you can install it seperately.
121+
Instead you can install it separately.
122122

123123
```bash
124124
pip install reflex-chakra

blog/2024-09-25-using-ag-grid-in-reflex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Check out the [open source repo](https://github.com/reflex-dev/reflex-ag-grid) a
5656
## What is AG Grid?
5757

5858
[AG Grid](https://www.ag-grid.com) is a feature-rich data grid library designed for displaying and manipulating tabular data in web applications.
59-
With over a million monthly downloads, and 90% of the Fortune 500 comapnies using it, it's a leading solution for working with tabular data.
59+
With over a million monthly downloads, and 90% of the Fortune 500 companies using it, it's a leading solution for working with tabular data.
6060
AG Grid offers a wide array of functionalities including:
6161

6262
- In-place cell editing

blog/2024-11-19-microsoft-azure-authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The Microsoft Authentication Library (MSAL) for Python library enables you to si
5252

5353
The values you should get from your Azure portal / SSO team at your company are `client_id`, `client_secret`, and `tenant_id`. These values are unique to your application and company.
5454

55-
It is recommended to retrive these values from environment variables or from a configuration file (they are just hardcoded for the example for simplicity).
55+
It is recommended to retrieve these values from environment variables or from a configuration file (they are just hardcoded for the example for simplicity).
5656

5757
Next we have to set the `sso_app` variable, which is the client application that will be used to authenticate users.
5858

case-studies/ansa.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ In addition, there were particular technologies like LLMs and Vector Databases t
104104
```md quote
105105
- name: Ryan
106106
- role: Investor and Head of Data
107-
I started to feel that with this framework I didn’t know if they could keep up with the pace of new developments with LLMs. They abstract a lot of the backend, so it's difficult to install third party libaries and you don't have full control over the database. For example some of the newer stuff we do with vector databases, embeddings models, or LLMs would be harder to do with this framework as we'd have to move off their native database.
107+
I started to feel that with this framework I didn’t know if they could keep up with the pace of new developments with LLMs. They abstract a lot of the backend, so it's difficult to install third party libraries and you don't have full control over the database. For example some of the newer stuff we do with vector databases, embeddings models, or LLMs would be harder to do with this framework as we'd have to move off their native database.
108108
```
109109

110110

docs/api-reference/event_triggers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ SYNTHETIC_EVENTS = [
3838
},
3939
{
4040
"name": "on_change",
41-
"description": "The on_change event handler is called when the value of an element has changed. For example, it’s called when the user types into a text input each keystoke triggers the on change.",
41+
"description": "The on_change event handler is called when the value of an element has changed. For example, it’s called when the user types into a text input each keystroke triggers the on change.",
4242
"state": """class ChangeState(rx.State):
4343
checked: bool = False
4444

docs/api-routes/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This is useful for creating a backend API that can be used for purposes other th
2222

2323
## Reserved Routes
2424

25-
Some routes on the backend are reserved for the runtime of Reflex, and should not be overriden unless you know what you are doing.
25+
Some routes on the backend are reserved for the runtime of Reflex, and should not be overridden unless you know what you are doing.
2626

2727
## Ping
2828

docs/assets/upload_and_download_files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ from pcweb.pages.docs import api_reference
66

77
# Files
88

9-
In addition to any assets you ship with your app, many web app will often need to receive or send files, whether you want to share medias, allow user to import their data, or export some backend data.
9+
In addition to any assets you ship with your app, many web app will often need to receive or send files, whether you want to share media, allow user to import their data, or export some backend data.
1010

1111
In this section, we will cover all you need to know for manipulating files in Reflex.
1212

0 commit comments

Comments
 (0)