core: examples: fix file comments
authorKent Gibson <warthog618@gmail.com>
Sat, 24 Jun 2023 05:20:52 +0000 (13:20 +0800)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 26 Jun 2023 08:06:11 +0000 (10:06 +0200)
Some of the file comments are cut-and-paste errors, so replace them
with the correct comment.

Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
examples/async_watch_line_value.c
examples/get_multiple_line_values.c
examples/reconfigure_input_to_output.c
examples/watch_multiple_line_values.c

index f35fb1a9efc876f10fc69a6b08f5ea7edfef9a7b..8b1d643b89213fe9c00d378c2cd6a020708b3fde 100644 (file)
@@ -1,7 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0-or-later
 // SPDX-FileCopyrightText: 2023 Kent Gibson <warthog618@gmail.com>
 
-/* Minimal example of asynchronously watching for edges on a single line */
+/* Minimal example of asynchronously watching for edges on a single line. */
 
 #include <errno.h>
 #include <gpiod.h>
index b16c570256a92a5f52e7d5629f043165d34d4ef5..c6df3f653891cda47ea5592d8582865a911c416a 100644 (file)
@@ -1,7 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0-or-later
 // SPDX-FileCopyrightText: 2023 Kent Gibson <warthog618@gmail.com>
 
-/* Minimal example of reading a single line. */
+/* Minimal example of reading multiple lines. */
 
 #include <errno.h>
 #include <gpiod.h>
index e8fbb1ca5e4fb4b76c6646e9211ed97cdfd8c364..451bb0e6f5128b64e31d9242bd8841fd324d4361 100644 (file)
@@ -1,7 +1,10 @@
 // SPDX-License-Identifier: GPL-2.0-or-later
 // SPDX-FileCopyrightText: 2023 Kent Gibson <warthog618@gmail.com>
 
-/* Minimal example of reading a single line. */
+/*
+ * Example of a bi-directional line requested as input and then switched
+ * to output.
+ */
 
 #include <errno.h>
 #include <gpiod.h>
index 80152706109afabdd1c7ae6c2bfc3dbbf87ad344..e955b2c7b096fd191ef9b2a8b92076d3865873d6 100644 (file)
@@ -1,7 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0-or-later
 // SPDX-FileCopyrightText: 2023 Kent Gibson <warthog618@gmail.com>
 
-/* Minimal example of watching for edges on a single line. */
+/* Minimal example of watching for edges on multiple lines. */
 
 #include <errno.h>
 #include <gpiod.h>