I forgot to add format_duration() to the manual.

This commit is contained in:
Charles Haley 2025-07-13 11:48:41 +01:00
parent 764ce83290
commit bf82a4594d

View File

@ -192,6 +192,7 @@ The following functions are usable in Single Function Mode because their first p
* :ffsum:`encode_for_url` * :ffsum:`encode_for_url`
* :ffsum:`floor` * :ffsum:`floor`
* :ffsum:`format_date` * :ffsum:`format_date`
* :ffsum:`format_duration`
* :ffsum:`format_number` * :ffsum:`format_number`
* :ffsum:`fractional_part` * :ffsum:`fractional_part`
* :ffsum:`human_readable` * :ffsum:`human_readable`
@ -293,7 +294,7 @@ Notes:
* In a logical context, any non-empty value is ``True`` * In a logical context, any non-empty value is ``True``
* In a logical context, the empty value is ``False`` * In a logical context, the empty value is ``False``
* Strings and numbers can be used interchangeably. For example, ``10`` and ``'10'`` are the same thing. * Strings and numbers can be used interchangeably. For example, ``10`` and ``'10'`` are the same thing.
* Comments are lines starting with blanks or tabs then a '#' character. * Comments are lines starting with a '#' character, possibly preceded by blanks or tabs.
**Operator precedence** **Operator precedence**