From 6aae1d5b0ad980df5bca5c7c5d756fadbffd9f15 Mon Sep 17 00:00:00 2001 From: Aboshxm2 <72500560+Aboshxm2@users.noreply.github.com> Date: Sun, 19 Jul 2026 19:55:05 +0100 Subject: [PATCH] Capitalize the word "FROM" in SQL query in caching.md it makes the query more clearer. --- content/develop/concepts/architecture/caching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) ```