This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 0c88b8f7bf2 Documentation: Fix incorrect timer initialization API 
names Correct the misspelled up_timer_initialize() and up_initialize() API 
names in the tickless OS documentation to match the declarations in 
include/nuttx/arch.h.
0c88b8f7bf2 is described below

commit 0c88b8f7bf262ee23d46660b965b17039ac2966b
Author: arnavsharma990 <[email protected]>
AuthorDate: Sun Aug 30 21:27:09 2026 +0530

    Documentation: Fix incorrect timer initialization API names
    Correct the misspelled up_timer_initialize() and up_initialize()
    API names in the tickless OS documentation to match the declarations
    in include/nuttx/arch.h.
    
    Signed-off-by: arnavsharma990 <[email protected]>
---
 Documentation/implementation/tickless_os.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Documentation/implementation/tickless_os.rst 
b/Documentation/implementation/tickless_os.rst
index d33f2e3c148..8832cf2e81e 100644
--- a/Documentation/implementation/tickless_os.rst
+++ b/Documentation/implementation/tickless_os.rst
@@ -160,8 +160,8 @@ Imported Intefaces
 The interfaces that must be provided by the platform specified code
 are defined in ``include/nuttx/arch.h`` and summarized below.
 
-``up_timer_intialize()``
-^^^^^^^^^^^^^^^^^^^^^^^^
+``up_timer_initialize()``
+^^^^^^^^^^^^^^^^^^^^^^^^^
 
 .. code:: c
 
@@ -169,7 +169,7 @@ are defined in ``include/nuttx/arch.h`` and summarized 
below.
 
 * **Description:** Initializes all platform-specific timer facilities.
   This function is called early in the initialization sequence by
-  ``up_intialize()``. On return, the current up-time should be available
+  ``up_initialize()``. On return, the current up-time should be available
   from ``up_timer_gettime()`` and the interval timer is ready for use
   (but not actively timing).
 * **Input Parameters:** None.

Reply via email to