string changes

This commit is contained in:
Kovid Goyal 2024-10-29 05:29:22 +05:30
parent b06dd79b7d
commit c74dd657d4
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -614,7 +614,7 @@ In `GPM` the functions described in `Single Function Mode` all require an additi
has_note('authors', '')
returns a list of authors that have notes. or ``''`` if no author has a note.
returns a list of authors that have notes, or ``''`` if no author has a note.
You can test if all the values in ``field_name`` have a note by comparing the list length of this function's return value against the list length of the values in ``field_name``. Example::

View File

@ -2638,7 +2638,7 @@ class BuiltinHasNote(BuiltinFormatterFunction):
"is '' then return a list of values in field_name that have "
"a note. If no item in the field has a note, return ''. "
"Example: has_note('authors', '') returns a list of authors "
"that have notes. or '' if no author has a note. The second "
"that have notes, or '' if no author has a note. The second "
"variant is useful for showing column icons icons if any value "
"in the field has a note, rather than a specific value. "
"You can also test if all the values have a note by comparing "