Skip to content

Commit

Permalink
fix: typo in architecture.md (#1039)
Browse files Browse the repository at this point in the history
changed "browswer" -> "browser"
  • Loading branch information
steffenvan authored Apr 18, 2024
1 parent 6641c36 commit 5292ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/develop/concepts/architecture/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ slug: /develop/concepts/architecture/architecture

# Understanding Streamlit's client-server architecture

Streamlit apps have a client-server structure. The Python backend of your app is the server. The frontend you view through a browswer is the client. When you develop an app locally, your computer runs both the server and the client. If someone views your app across a local or global network, the server and client run on different machines. If you intend to share or deploy your app, it's important to understand this client-server structure to avoid common pitfalls.
Streamlit apps have a client-server structure. The Python backend of your app is the server. The frontend you view through a browser is the client. When you develop an app locally, your computer runs both the server and the client. If someone views your app across a local or global network, the server and client run on different machines. If you intend to share or deploy your app, it's important to understand this client-server structure to avoid common pitfalls.

## Python backend (server)

Expand Down

0 comments on commit 5292ce5

Please sign in to comment.