Skip to content

Commit 0313409

Browse files
committed
fix basic usage
1 parent 9cc6842 commit 0313409

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ user = get_user(42)
105105
@cache.invalidates('user')
106106
def update_users(user_ids, data):
107107
# Update in database...
108-
# The return value is used to invalidate all cached functions that was containing this user ids in return
108+
# The return value is used to invalidate all cached functions that was containing this user ids
109109
return [{"id": user_ids[0], "name": data.get("name")}, {"id": user_ids[1], "name": data.get("name")}]
110110

111111
# Or manually invalidate

0 commit comments

Comments
 (0)