diff --git a/content/develop/concepts/architecture/caching.md b/content/develop/concepts/architecture/caching.md index 5992d1719..d046c2254 100644 --- a/content/develop/concepts/architecture/caching.md +++ b/content/develop/concepts/architecture/caching.md @@ -141,7 +141,7 @@ connection = database.connect() @st.cache_data def query(): - return pd.read_sql_query("SELECT * from table", connection) + return pd.read_sql_query("SELECT * FROM table", connection) ```