From e502c9ba845af537f6a284782b564929251d4645 Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Mon, 24 Nov 2014 04:06:31 -0500 Subject: [PATCH] Fix a couple of typos. --- pythonx/UltiSnips/vim_state.py | 2 +- test_all.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pythonx/UltiSnips/vim_state.py b/pythonx/UltiSnips/vim_state.py index 6f9ec4f..38074cb 100644 --- a/pythonx/UltiSnips/vim_state.py +++ b/pythonx/UltiSnips/vim_state.py @@ -46,7 +46,7 @@ class VimState(object): """Save the unnamed register. 'text_to_expect' is text that we expect to be contained in the register the next time this method is called - this could be text from the tabstop that was selected and might have - been overwritten. We will not cash that then.""" + been overwritten. We will not cache that then.""" self._unnamed_reg_cached = True escaped_text = self._text_to_expect.replace("'", "''") res = int(_vim.eval('@" != ' + "'" + escaped_text + "'")) diff --git a/test_all.py b/test_all.py index 290a01a..daf1a58 100755 --- a/test_all.py +++ b/test_all.py @@ -19,9 +19,9 @@ # For each test, the test.py script will launch vim with a vimrc, run the test, # compare the output and exit vim again. The keys are send using screen. # -# NOTE: The tessuite is not working under Windows right now as I have no access -# to a windows system for fixing it. Volunteers welcome. Here are some comments -# from the last time I got the test suite running under windows. +# NOTE: The test suite is not working under Windows right now as I have no +# access to a windows system for fixing it. Volunteers welcome. Here are some +# comments from the last time I got the test suite running under windows. # # Under windows, COM's SendKeys is used to send keystrokes to the gvim window. # Note that Gvim must use english keyboard input (choose in windows registry)