string changes

This commit is contained in:
Kovid Goyal 2023-04-09 17:13:13 +05:30
parent a9cec37155
commit 51ed2261b9
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -2370,10 +2370,9 @@ class Cache:
Returns all links for all fields referenced by book identified by book_id Returns all links for all fields referenced by book identified by book_id
Example: Assume author A has link X, author B has link Y, tag S has link Example: Assume author A has link X, author B has link Y, tag S has link
F, and tag T has link G. IF book 1 has author A and F, and tag T has link G. IF book 1 has author A and tag T,
tag T, this method returns {'authors':{'A':'X'}, 'tags':{'T', 'G'}} this method returns {'authors':{'A':'X'}, 'tags':{'T', 'G'}}
If book 2's author is neither A nor B and has no tags, this If book 2's author is neither A nor B and has no tags, this method returns {}
method returns {}
:param book_id: the book id in question. :param book_id: the book id in question.