Skip to content

Commit bd77049

Browse files
committed
fix spelling in env.rst
1 parent e6cef5d commit bd77049

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/dev/env.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ VIM
1515
Vim is a text editor which uses keyboard shortcuts for editing instead of menus
1616
or icons. There exist a couple of plugins and settings for the VIM editor to
1717
aid python development. If you only develop in Python, a good start is to set
18-
the default settings for indentation and linewrapping to values compliant with
18+
the default settings for indentation and line-wrapping to values compliant with
1919
`PEP 8 <http://www.python.org/dev/peps/pep-0008/>`_. In your home directory,
2020
open a file called `.vimrc` and add the following lines: ::
2121

@@ -151,7 +151,7 @@ Create a virtual environment for a project::
151151
$ cd my_project
152152
$ virtualenv venv
153153

154-
``virtualenv venv`` will create a folder in the currect directory
154+
``virtualenv venv`` will create a folder in the current directory
155155
which will contain the Python executable files, and a copy of the ``pip``
156156
library which you can use to install other packages. The name of the
157157
virtual environment (in this case, it was ``venv``) can be anything;

0 commit comments

Comments
 (0)