- commentary typo fix
diff --git a/libbb/find_pid_by_name.c b/libbb/find_pid_by_name.c
index 2ee423c..92d6d02 100644
--- a/libbb/find_pid_by_name.c
+++ b/libbb/find_pid_by_name.c
@@ -88,7 +88,7 @@
if (comm_match(p, procName)
/* or we require argv0 to match (essential for matching reexeced /proc/self/exe)*/
|| (p->argv0 && strcmp(bb_basename(p->argv0), procName) == 0)
- /* TOOD: we can also try /proc/NUM/exe link, do we want that? */
+ /* TODO: we can also try /proc/NUM/exe link, do we want that? */
) {
pidList = xrealloc_vector(pidList, 2, i);
pidList[i++] = p->pid;