Skip to content

Commit 3ebef5a

Browse files
authored
found a few spelling errors (#896)
1 parent 44bd90d commit 3ebef5a

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

content/kb/deployments/invoking-python-subprocess-deployed-streamlit-app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ subprocess.run(["python", "script.py"])
2323

2424
When you run the above code block, you will get the version of Python that is on the system path—not necessarily the Python executable installed in the virtual environment that the Streamlit code is running under.
2525

26-
The solution is to detect the Python executable directy with [`sys.executable`](https://docs.python.org/3/library/sys.html#sys.executable):
26+
The solution is to detect the Python executable directly with [`sys.executable`](https://docs.python.org/3/library/sys.html#sys.executable):
2727

2828
```python
2929
# streamlit_app.py

content/kb/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The knowledge base is a self-serve library of tips, step-by-step tutorials, and
3838
bold="Installing dependencies."
3939
href="/knowledge-base/dependencies"
4040
>
41-
If you run into problems installing depedencies for your Streamlit apps, we've got you covered.
41+
If you run into problems installing dependencies for your Streamlit apps, we've got you covered.
4242
</InlineCallout>
4343
<InlineCallout
4444
color="orange-80"

content/kb/using-streamlit/upgrade-version-streamlit.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Streamlit's officially-supported environment manager for macOS and Linux is [Pip
1919
cd myproject
2020
```
2121

22-
2. Activate that environment, upgrade Streamlit, and verify you have the lastest version:
22+
2. Activate that environment, upgrade Streamlit, and verify you have the latest version:
2323

2424
```bash
2525
pipenv shell
@@ -44,7 +44,7 @@ conda activate $ENVIRONMENT_NAME
4444

4545
Be sure to replace`$ENVIRONMENT_NAME` ☝️ with the name your conda environment!
4646

47-
2. Update Streamlit within the active conda environment and verify you have the lastest version:
47+
2. Update Streamlit within the active conda environment and verify you have the latest version:
4848

4949
```bash
5050
conda update -c conda-forge streamlit -y
@@ -53,7 +53,7 @@ streamlit version
5353

5454
## Poetry
5555

56-
In order to get the latest version of Streamlit with [Poetry](https://python-poetry.org/) and verify you have the lastest version, run:
56+
In order to get the latest version of Streamlit with [Poetry](https://python-poetry.org/) and verify you have the latest version, run:
5757

5858
```bash
5959
poetry update streamlit

content/streamlit-cloud/deploy-your-app/app-dependencies.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ directory as your Streamlit app.
2121

2222
## Add Python dependencies
2323

24-
With each `import` statement in your script, you are bringing in a Python dependency. You need to tell Streamlit Community Cloud how to install those depencies through a Python package manager. We recommend using a `requirements.txt` which is based on `pip`.
24+
With each `import` statement in your script, you are bringing in a Python dependency. You need to tell Streamlit Community Cloud how to install those dependencies through a Python package manager. We recommend using a `requirements.txt` which is based on `pip`.
2525

2626
You should _not_ include <a href="https://docs.python.org/3/py-modindex.html" target="_blank">built-in Python libraries</a> like `math` or `random` in your `requirements.txt` file. These are a part of Python and aren't installed separately. Also, Streamlit Community Cloud has `streamlit` installed by default. You don't strictly need to include `streamlit` unless you want to pin or restrict the version. If you deploy an app without a `requirements.txt` file, your app will run in an environment with just `streamlit` (and its dependencies) installed.
2727

@@ -61,7 +61,7 @@ We recommend that you use the latest version of Streamlit to ensure full Streaml
6161

6262
</Note>
6363

64-
If you pin `streamlit` below 1.20.0, you may experience unexpected results if you've pinned any dependencies of `altair`. If `streamlit` is installed below version 1.20.0, `altair<5` will be reinstalled on top of your evironment for compatibility reasons. When this happens all of altair's dependecies will be updated.
64+
If you pin `streamlit` below 1.20.0, you may experience unexpected results if you've pinned any dependencies of `altair`. If `streamlit` is installed below version 1.20.0, `altair<5` will be reinstalled on top of your environment for compatibility reasons. When this happens all of altair's dependencies will be updated.
6565

6666
### Other Python package managers
6767

content/streamlit-cloud/deploy-your-app/secrets-management.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ my_db.connect(**st.secrets.db_credentials)
8787

8888
### Edit your app's secrets
8989

90-
If you need to add or edit your secrets for an app that is already deployed, you can accesss advanced setting from your admin panel.
90+
If you need to add or edit your secrets for an app that is already deployed, you can access advanced setting from your admin panel.
9191

9292
1. Go to <a href="https://share.streamlit.io" target="_blank">share.streamlit.io</a>.
9393
2. Click the overflow menu icon (<i style={{ verticalAlign: "-.25em" }} className={{ class: "material-icons-sharp" }}>more_vert</i>) for your app.

content/streamlit-cloud/get-started/create-your-account.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If you're sharing a private app, you will assign viewing permission by email. Th
2727
#### Primary identity option 1: Google
2828

2929
1. Go to <a href="https://share.streamlit.io/signup" target="_blank">share.streamlit.io/signup</a>.
30-
2. Click "**Continute with Google**".
30+
2. Click "**Continue with Google**".
3131

3232
<div style={{ maxWidth: '50%', margin: 'auto' }}>
3333
<Image alt="Sign up for Streamlit Community Cloud with Google" src="/images/streamlit-community-cloud/sign-up-Google-XL.png" />
@@ -48,7 +48,7 @@ If you're sharing a private app, you will assign viewing permission by email. Th
4848
#### Primary identity option 2: email
4949

5050
1. Go to <a href="https://share.streamlit.io/signup" target="_blank">share.streamlit.io/signup</a>.
51-
2. Enter your email address and click "**Continute with email**".
51+
2. Enter your email address and click "**Continue with email**".
5252

5353
<div style={{ maxWidth: '50%', margin: 'auto' }}>
5454
<Image alt="Sign up for Streamlit Community Cloud with email" src="/images/streamlit-community-cloud/sign-up-email-XL.png" />
@@ -74,7 +74,7 @@ If you're sharing a private app, you will assign viewing permission by email. Th
7474

7575
### Step 2: Source control
7676

77-
Streamlit Community Cloud is integreated with GitHub for source control. If you begin your sign-up process with GitHub, you will not be directly prompted to create a primary identity. However, you can attach a Google account later.
77+
Streamlit Community Cloud is integrated with GitHub for source control. If you begin your sign-up process with GitHub, you will not be directly prompted to create a primary identity. However, you can attach a Google account later.
7878

7979
There are two different authorization requests to completely [Connect your GitHub account](/streamlit-community-cloud/get-started/connect-your-github-account). You will encounter the first authorization request when you begin connecting your GitHub account. A second authorization is needed the first time you deploy an app. If you will be deploying or managing any apps from a GitHub organization, your authorization requests will include additional options to allow [Organization access](/streamlit-community-cloud/get-started/connect-github#organization-access).
8080

content/streamlit-cloud/get-started/fork-and-edit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ Community Cloud is all about learning, sharing, and exploring the world of Strea
2727

2828
![Your new GitHub Codespace](/images/streamlit-community-cloud/fork-cheatsheet-codespace.png)
2929

30-
You now have a copy the public app deployed from your account. You can edit and explore within your codespace and (if you choose) commit your changes to your deployed app to share with the world! 🌎 Learn more about editing your app in GitHub Codespaces, commiting your edits to your repository, and shutting down your codespace in [Edit your app with GitHub Codespaces](/streamlit-community-cloud/manage-your-app/edit-your-app#edit-your-app-with-github-codespaces).
30+
You now have a copy the public app deployed from your account. You can edit and explore within your codespace and (if you choose) commit your changes to your deployed app to share with the world! 🌎 Learn more about editing your app in GitHub Codespaces, committing your edits to your repository, and shutting down your codespace in [Edit your app with GitHub Codespaces](/streamlit-community-cloud/manage-your-app/edit-your-app#edit-your-app-with-github-codespaces).

content/streamlit-cloud/get-started/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ slug: /streamlit-community-cloud/get-started
55

66
# Get started
77

8-
Welcome to Streamlit Community Cloud, where you can share your Streamlit apps with the world! Whether you've already created your first Streamlit app or you're just getting started, you're in ther right place.
8+
Welcome to Streamlit Community Cloud, where you can share your Streamlit apps with the world! Whether you've already created your first Streamlit app or you're just getting started, you're in the right place.
99

1010
First things first, you need to create your Streamlit Community Cloud account to start deploying apps.
1111

content/streamlit-cloud/manage-your-account/workspace-settings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ From your workspace at <a href="https://share.streamlit.io" target="_blank">shar
1717

1818
The "**Linked accounts**" section shows your current primary identity and source control account. To learn more, see [Manage your account](/streamlit-community-cloud/manage-your-account).
1919

20-
![Mangae your linked accounts in workspace settings](/images/streamlit-community-cloud/account-primary-identity-and-source-control.png)
20+
![Manage your linked accounts in workspace settings](/images/streamlit-community-cloud/account-primary-identity-and-source-control.png)
2121

2222
## Limits
2323

content/streamlit-cloud/manage-your-app/edit-your-app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Spin up a cloud-based development environment for your deployed app in minutes.
3535

3636
![Your new GitHub Codespace](/images/streamlit-community-cloud/deploy-sample-codespace.png)
3737

38-
6. When you make changes to your app, the file is automatically saved within your codespace. Your edits do not affect your repository unless you choose to commit those changes. We will describe commiting your changes in a later step.
38+
6. When you make changes to your app, the file is automatically saved within your codespace. Your edits do not affect your repository unless you choose to commit those changes. We will describe committing your changes in a later step.
3939

4040
In order to see updates automatically reflected on the right, click "**Always rerun**" when prompted after an edit.
4141

content/streamlit-cloud/manage-your-app/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ If your app is running slowly or you're hitting the '😦 Oh no.' page, we first
107107
- <a href="https://blog.streamlit.io/common-app-problems-resource-limits/" target="_blank">Common app problems: Resource limits</a>
108108
- <a href="https://blog.streamlit.io/3-steps-to-fix-app-memory-leaks/" target="_blank">3 steps to fix app memory leaks</a>
109109

110-
If your app exceeds its resourse limits, developers and viewers alike will see '😦 Oh no.'
110+
If your app exceeds its resource limits, developers and viewers alike will see '😦 Oh no.'
111111

112112
<div style={{ maxWidth: '70%', margin: 'auto' }}>
113113
<Image alt="App state: Oh no. Error running your app." src="/images/streamlit-community-cloud/app-state-oh-no.png" />

0 commit comments

Comments
 (0)