Skip to content

Commit ae9257a

Browse files
Fix various typos.
1 parent e8a2d69 commit ae9257a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ We have already many nice things, for instance:
5050
- All of the functionality of `prompt_toolkit
5151
<http://github.com/jonathanslenders/python-prompt-toolkit>`_. This includes a
5252
lot of Vi key bindings, it's platform independent and runs on every Python
53-
version from python 2.6 up to 3.4. It also runs on Pypy with a noticable
53+
version from python 2.6 up to 3.4. It also runs on Pypy with a noticeable
5454
performance boost.
5555

5656
- Several ``:set ...`` commands have been implemented, like ``incsearch``,
@@ -121,7 +121,7 @@ Compared to Vi Improved, Pyvim is still less powerful in many aspects.
121121
well for development and quickly prototyping of new features, but it comes
122122
with a performance penalty. Depending on the system, when a file has above a
123123
thousand lines and syntax highlighting is enabled, editing will become
124-
noticable slower. (The bottleneck is probably the ``BufferControl`` code,
124+
noticeable slower. (The bottleneck is probably the ``BufferControl`` code,
125125
which on every key press tries to reflow the text and calls pygments for
126126
highlighting. And this is Python code looping through single characters.)
127127
- A lot of nice Vim features, like line folding, macros, etcetera are not yet

pyvim/commands/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def quit_nonzero(editor):
341341
"""
342342
# Note: the try/finally in `prompt_toolkit.Interface.read_input`
343343
# will ensure that the render output is reset, leaving the alternate
344-
# screen before quiting.
344+
# screen before quitting.
345345
editor.application.exit()
346346

347347

pyvim/completion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,6 @@ def _get_jedi_script_from_document(self, document):
115115
# Workaround Jedi issue #514: for https://github.com/davidhalter/jedi/issues/514
116116
return None
117117
except KeyError:
118-
# Workaroud for a crash when the input is "u'", the start of a unicode string.
118+
# Workaround for a crash when the input is "u'", the start of a unicode string.
119119
return None
120120

pyvim/window_arrangement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def close_active_window(self):
183183
self.active_window = None # No windows left.
184184

185185
# When there is exactly on item left, move this back into the parent
186-
# split. (We don't want to keep a split with one item around -- exept
186+
# split. (We don't want to keep a split with one item around -- except
187187
# for the root.)
188188
if len(active_split) == 1 and active_split != self.root:
189189
parent = self._get_split_parent(active_split)

0 commit comments

Comments
 (0)