From 973c575967442da470ad56efbfb897753f0de68e Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 3 Apr 2025 08:33:58 -0600 Subject: Many minor typo fixes I ran codespell on gdb/*.[chyl] and fixed a bunch of simple typos. Most of what remains is trickier, i.e., spots where a somewhat natural name of something in the code is flagged as a typo. Reviewed-By: Tom de Vries --- gdb/ser-unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/ser-unix.c') diff --git a/gdb/ser-unix.c b/gdb/ser-unix.c index 02845aa..1913309 100644 --- a/gdb/ser-unix.c +++ b/gdb/ser-unix.c @@ -404,7 +404,7 @@ rate_to_code (int rate) for (i = 0; baudtab[i].rate != -1; i++) { - /* test for perfect macth. */ + /* test for perfect match. */ if (rate == baudtab[i].rate) return baudtab[i].code; else -- cgit v1.1