Minor doc change

This commit is contained in:
flyingscorpio@clevo 2022-12-10 14:37:21 +01:00
parent a2c8107656
commit d995bf904c

View file

@ -77,7 +77,7 @@ fn load_sql() -> Result<Vec<Cache>, CacheError> {
Ok(results)
}
/// SQL cache function to be called by `get_data`.
/// SQL cache function to be called by `get_data` (read) and `api_client` (write).
pub fn sql_cache() {
let data = match load_sql() {
Ok(data) => data,