From 105d13862d1ae7e80b9faf5053f7beceaf0404d4 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 27 Feb 2017 00:02:41 +0530 Subject: [PATCH] ... --- manual/catalogs.rst | 2 +- manual/function_mode.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manual/catalogs.rst b/manual/catalogs.rst index 73d207579c..4c3032b60b 100644 --- a/manual/catalogs.rst +++ b/manual/catalogs.rst @@ -114,7 +114,7 @@ Other options :guilabel:`Extra Description note` specifies a custom column's contents to be inserted into the Description page, next to the cover thumbnail. For example, you might want to display the date you last read a book using a :guilabel:`Last Read` custom column. For advanced use of the Description note feature, see `this post in the calibre forum `_. -:guilabel:`Thumb width` specifies a width preference for cover thumbnails included with Descriptions pages. Thumbnails are cached to improve performance.To experiment with different widths, try generating a catalog with just a few books until you've determined your preferred width, then generate your full catalog. The first time a catalog is generated with a new thumbnail width, performance will be slower, but subsequent builds of the catalog will take advantage of the thumbnail cache. +:guilabel:`Thumb width` specifies a width preference for cover thumbnails included with Descriptions pages. Thumbnails are cached to improve performance. To experiment with different widths, try generating a catalog with just a few books until you've determined your preferred width, then generate your full catalog. The first time a catalog is generated with a new thumbnail width, performance will be slower, but subsequent builds of the catalog will take advantage of the thumbnail cache. :guilabel:`Merge with Comments` specifies a custom column whose content will be non-destructively merged with the Comments metadata during catalog generation. For example, you might have a custom column :guilabel:`Author Bio` that you'd like to append to the Comments metadata. You can choose to insert the custom column contents *before or after* the Comments section, and optionally separate the appended content with a horizontal rule separator. Eligible custom column types include ``text, comments, and composite``. diff --git a/manual/function_mode.rst b/manual/function_mode.rst index 88c0cba986..01ff25cb53 100644 --- a/manual/function_mode.rst +++ b/manual/function_mode.rst @@ -240,7 +240,7 @@ The ``match`` argument The ``match`` argument represents the currently found match. It is a `python Match object `_. -It's most useful method is ``group()`` which can be used to get the matched +Its most useful method is ``group()`` which can be used to get the matched text corresponding to individual capture groups in the search regular expression. @@ -271,7 +271,7 @@ The ``dictionaries`` argument ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ This represents the collection of dictionaries used for spell checking the -current book. It's most useful method is ``dictionaries.recognized(word)`` +current book. Its most useful method is ``dictionaries.recognized(word)`` which will return ``True`` if the passed in word is recognized by the dictionary for the current book's language.