Skip to content

Commit 4fbdb1a

Browse files
JuliaLawallgeertu
authored andcommitted
m68k: math-emu: Fix typos in comments
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>
1 parent c862fe7 commit 4fbdb1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/m68k/math-emu/fp_arith.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ fp_fdiv(struct fp_ext *dest, struct fp_ext *src)
243243
/* infinity / infinity = NaN (quiet, as always) */
244244
if (IS_INF(src))
245245
fp_set_nan(dest);
246-
/* infinity / anything else = infinity (with approprate sign) */
246+
/* infinity / anything else = infinity (with appropriate sign) */
247247
return dest;
248248
}
249249
if (IS_INF(src)) {

0 commit comments

Comments
 (0)