summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZiyu Chen <chenziyu@uniontech.com>2026-01-21 12:41:47 +0300
committerShuah Khan <skhan@linuxfoundation.org>2026-01-21 20:56:25 +0300
commit6d6ad32e22f028c525d5df471c5522616e645a6b (patch)
tree234385eee905fdd6659c6367701a0c7adf088d3b /tools
parent3ec6cefc398b93e5f28500f80e7321a80fffee8a (diff)
downloadlinux-6d6ad32e22f028c525d5df471c5522616e645a6b.tar.xz
selftests/pidfd: fix typo in comment
Fix the typo "untill" → "until" in a comment in pidfd_info_test.c. This typo is already listed in scripts/spelling.txt by commit 66b47b4a9dad ("checkpatch: look for common misspellings"). Link: https://lore.kernel.org/r/20260121094147.4187337-1-chenziyu@uniontech.com Suggested-by: Cryolitia PukNgae <cryolitia@uniontech.com> Signed-off-by: Ziyu Chen <chenziyu@uniontech.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/selftests/pidfd/pidfd_info_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/pidfd/pidfd_info_test.c b/tools/testing/selftests/pidfd/pidfd_info_test.c
index 6571e04acd88..8bed951e06a0 100644
--- a/tools/testing/selftests/pidfd/pidfd_info_test.c
+++ b/tools/testing/selftests/pidfd/pidfd_info_test.c
@@ -229,7 +229,7 @@ static void *pidfd_info_pause_thread(void *arg)
close(ipc_socket);
- /* Sleep untill we're killed. */
+ /* Sleep until we're killed. */
pause();
return NULL;
}