From b839beb23d5fd3431132df68693f402891c5f69e Mon Sep 17 00:00:00 2001 From: Constantin Date: Sun, 25 Aug 2019 20:33:41 +0200 Subject: [PATCH] fix typo: base on -> based on --- docs/patterns/viewdecorators.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/patterns/viewdecorators.rst b/docs/patterns/viewdecorators.rst index 7fd97dca..c8d24a0f 100644 --- a/docs/patterns/viewdecorators.rst +++ b/docs/patterns/viewdecorators.rst @@ -70,7 +70,7 @@ straightforward to read. The decorated function will then work as follows -1. get the unique cache key for the current request base on the current +1. get the unique cache key for the current request based on the current path. 2. get the value for that key from the cache. If the cache returned something we will return that value.