Skip to content

Commit 5d6e0b2

Browse files
authored
Fix typo in additional-features.md (#949)
Fixed a typo: In the Static file serving section, at the end of the second sentence it says "to your" twice.
1 parent 71c934f commit 5d6e0b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/get-started/fundamentals/additional-features.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Our documentation on [Multipage apps](/library/advanced-features/multipage-apps)
105105

106106
## Static file serving
107107

108-
As you learned in Streamlit fundamentals, Streamlit runs a server that clients connect to. That means viewers of your app don't have direct access to the files which are local to your to your app. Most of the time, this doesn't matter because Streamlt commands handle that for you. When you use `st.image(<path-to-image>)` your Streamlit server will access the file and handle the necessary hosting so your app viewers can see it. However, if you want a direct URL to an image or file you'll need to host it. This requires setting the correct configuration and placing your hosted files in a directory named `static`. For example, your project could look like:
108+
As you learned in Streamlit fundamentals, Streamlit runs a server that clients connect to. That means viewers of your app don't have direct access to the files which are local to your app. Most of the time, this doesn't matter because Streamlt commands handle that for you. When you use `st.image(<path-to-image>)` your Streamlit server will access the file and handle the necessary hosting so your app viewers can see it. However, if you want a direct URL to an image or file you'll need to host it. This requires setting the correct configuration and placing your hosted files in a directory named `static`. For example, your project could look like:
109109

110110
```bash
111111
your-project/

0 commit comments

Comments
 (0)