]> git.lyx.org Git - lyx.git/blobdiff - src/Text.cpp
Thanks, Abdel.
[lyx.git] / src / Text.cpp
index db5ce872adebb8e5a3ebc121e21ca6045f110026..09c6f49ab1b2f828021d7415c51e17c4fc551cec 100644 (file)
@@ -640,7 +640,7 @@ bool Text::cursorBackwardOneWord(Cursor & cur)
                return setCursor(cur, pit - 1, getPar(pit - 1).size());
 
        if (lyxrc.mac_like_word_movement) {
-               // Skip through puctuation and spaces.
+               // Skip through punctuation and spaces.
                while (pos != 0 && (par.isChar(pos - 1) || par.isSpace(pos - 1)))
                        --pos;