m68k: math-emu: Fix typos in comments
authorJulia Lawall <Julia.Lawall@inria.fr>
Sat, 30 Apr 2022 19:11:21 +0000 (21:11 +0200)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Mon, 9 May 2022 11:13:59 +0000 (13:13 +0200)
Various spelling mistakes in comments.
Detected with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Link: https://lore.kernel.org/r/20220430191122.8667-7-Julia.Lawall@inria.fr
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
arch/m68k/math-emu/fp_arith.c

index d9033238d09703078c4f0f1fece8405405000f6a..f4a06492cd7a118a78d912dc82281214cbb44aa4 100644 (file)
@@ -243,7 +243,7 @@ fp_fdiv(struct fp_ext *dest, struct fp_ext *src)
                /* infinity / infinity = NaN (quiet, as always) */
                if (IS_INF(src))
                        fp_set_nan(dest);
-               /* infinity / anything else = infinity (with approprate sign) */
+               /* infinity / anything else = infinity (with appropriate sign) */
                return dest;
        }
        if (IS_INF(src)) {