treewide: fix spelling of "immediately".
authorKent Gibson <warthog618@gmail.com>
Mon, 25 Mar 2024 11:17:17 +0000 (19:17 +0800)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 25 Mar 2024 13:26:48 +0000 (14:26 +0100)
"immediately" is incorrectly spelled "immediatelly" in several places, so
replace with correct spelling.

Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/cxx/gpiodcxx/chip.hpp
bindings/cxx/gpiodcxx/line-request.hpp
include/gpiod.h

index e8b3c0f3ccab2bb094fcd4b8adbabb205ddb8bf2..297db3db1cce62717fa3a467f7e05933d9588f63 100644 (file)
@@ -126,7 +126,7 @@ public:
         * @brief Wait for line status events on any of the watched lines
         *        exposed by this chip.
         * @param timeout Wait time limit in nanoseconds. If set to 0, the
-        *                function returns immediatelly. If set to a negative
+        *                function returns immediately. If set to a negative
         *                number, the function blocks indefinitely until an
         *                event becomes available.
         * @return True if at least one event is ready to be read. False if the
index 8c1b47436c34f53c6c44825dc2ff1142a7cbbcb4..0a47a76cf719b5bbe5b46b404e0cc5078adbf983 100644 (file)
@@ -183,7 +183,7 @@ public:
         * @brief Wait for edge events on any of the lines requested with edge
         *        detection enabled.
         * @param timeout Wait time limit in nanoseconds. If set to 0, the
-        *                function returns immediatelly. If set to a negative
+        *                function returns immediately. If set to a negative
         *                number, the function blocks indefinitely until an
         *                event becomes available.
         * @return True if at least one event is ready to be read. False if the
index d86c6acfa14693dad54d9626885323eaaefe9972..cacf97aaa2cc8133dd6bb09b1680f74590cb8a5f 100644 (file)
@@ -246,7 +246,7 @@ int gpiod_chip_get_fd(struct gpiod_chip *chip);
  *        on the chip.
  * @param chip GPIO chip object.
  * @param timeout_ns Wait time limit in nanoseconds. If set to 0, the function
- *                   returns immediatelly. If set to a negative number, the
+ *                   returns immediately. If set to a negative number, the
  *                   function blocks indefinitely until an event becomes
  *                   available.
  * @return 0 if wait timed out, -1 if an error occurred, 1 if an event is
@@ -1164,7 +1164,7 @@ int gpiod_line_request_get_fd(struct gpiod_line_request *request);
  * @brief Wait for edge events on any of the requested lines.
  * @param request GPIO line request.
  * @param timeout_ns Wait time limit in nanoseconds. If set to 0, the function
- *                   returns immediatelly. If set to a negative number, the
+ *                   returns immediately. If set to a negative number, the
  *                   function blocks indefinitely until an event becomes
  *                   available.
  * @return 0 if wait timed out, -1 if an error occurred, 1 if an event is