diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-10-02 18:02:51 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-10-03 12:53:51 +0200 |
commit | d6a2754348f57883036c0f35f0a880b7817e6bc1 (patch) | |
tree | b3d3a8a10ebf0e56acff206d0e188f3b61651d7e /test/lisp/progmodes/python-tests.el | |
parent | ceae38b9338ea07b18b2d2efa07bcf304d40c23d (diff) | |
download | emacs-d6a2754348f57883036c0f35f0a880b7817e6bc1.tar.gz emacs-d6a2754348f57883036c0f35f0a880b7817e6bc1.tar.bz2 emacs-d6a2754348f57883036c0f35f0a880b7817e6bc1.zip |
; Fix more typos
Diffstat (limited to 'test/lisp/progmodes/python-tests.el')
-rw-r--r-- | test/lisp/progmodes/python-tests.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/progmodes/python-tests.el b/test/lisp/progmodes/python-tests.el index 6b3e63653be..bc77443ff4f 100644 --- a/test/lisp/progmodes/python-tests.el +++ b/test/lisp/progmodes/python-tests.el @@ -339,7 +339,7 @@ def func(arg): # I don't do much return arg # This comment is badly indented because the user forced so. - # At this line python.el wont dedent, user is always right. + # At this line python.el won't dedent, user is always right. comment_wins_over_ender = True @@ -358,7 +358,7 @@ comment_wins_over_ender = True ;; The return keyword do make indentation lose a level... (should (= (python-indent-calculate-indentation) 0)) ;; ...but the current indentation was forced by the user. - (python-tests-look-at "# At this line python.el wont dedent") + (python-tests-look-at "# At this line python.el won't dedent") (should (eq (car (python-indent-context)) :after-comment)) (should (= (python-indent-calculate-indentation) 4)) ;; Should behave the same for blank lines: potentially a comment. |