Skip to content

Commit

Permalink
Update summary.md (#1046)
Browse files Browse the repository at this point in the history
Fix typo: 'brower' → 'browser'
  • Loading branch information
vipranarayan14 authored May 3, 2024
1 parent 7551716 commit de3b53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/get-started/fundamentals/summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ the loop and review how it works together:
1. Streamlit apps are Python scripts that run from top to bottom.
1. Every time a user opens a browser tab pointing to your app, the script is executed and a new session starts.
1. As the script executes, Streamlit draws its output live in a browser.
1. Every time a user interacts with a widget, your script is re-executed and Streamlit redraws its output in the brower.
1. Every time a user interacts with a widget, your script is re-executed and Streamlit redraws its output in the browser.
- The output value of that widget matches the new value during that rerun.
1. Scripts use the Streamlit cache to avoid recomputing expensive functions, so updates happen very fast.
1. Session State lets you save information that persists between reruns when you need more than a simple widget.
Expand Down

0 comments on commit de3b53b

Please sign in to comment.