This is an automated email from the ASF dual-hosted git repository. linguini pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 32252215198083fc81138d4c87838934b2df938a Author: Kerogit <[email protected]> AuthorDate: Sat Feb 28 08:37:05 2026 +0100 Documentation/reference/os/time_clock: fix indentation in HR Timer description This patch fixes formatting error in desription of High Resolution Timer. Using indentation to (presumably) align non-bold text right of the bold text did not have the desired effect, instead the line was split into two and the second line was handled as an indented paragraph. Signed-off-by: Kerogit <[email protected]> --- Documentation/reference/os/time_clock.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/reference/os/time_clock.rst b/Documentation/reference/os/time_clock.rst index 7beb20824e1..3e7cb8b4e53 100644 --- a/Documentation/reference/os/time_clock.rst +++ b/Documentation/reference/os/time_clock.rst @@ -648,12 +648,12 @@ which delivers true nanosecond-level precision. HRTimer primarily provides the following functional interfaces: **Set a timer in nanoseconds**: Configure a software timer to trigger at - a specified nanosecond time. +a specified nanosecond time. **Cancel a timer**: Cancel the software timer. **Handle timer timeout**: Execute timeout processing after the timer event - is triggered. +is triggered. A user can register an hrtimer callback to execute after a specified delay. The callback runs in the timer interrupt context, so only limited NuttX interfaces
