From a57243844fb0fa82a866533f465041ebdc5a781b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 20 Sep 2014 18:19:48 +0530 Subject: [PATCH] ... --- src/calibre/db/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/db/cache.py b/src/calibre/db/cache.py index 3a23c8ed4a..fd20ae8c9b 100644 --- a/src/calibre/db/cache.py +++ b/src/calibre/db/cache.py @@ -606,7 +606,7 @@ class Cache(object): ''' Like :meth:`get_metadata` except that it returns a ProxyMetadata object that only reads values from the database on demand. This is much faster than get_metadata when only a small number of fields need to be - accessed from the reutrned metadata object. ''' + accessed from the returned metadata object. ''' return ProxyMetadata(self, book_id) @api