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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Geert Uytterhoeven <[email protected]>
1 parent c862fe7 commit 4fbdb1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)