summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2019-08-30 05:56:53 +0000
committerEvan Read <eread@gitlab.com>2019-08-30 05:56:53 +0000
commit770a15b0217a7449da381b6adb5b1dd378903e79 (patch)
tree390d641ea68771ac4f76867e116eb41d7f84b008
parent84064567de1322e8e603f9891e61a9864cb1cbe2 (diff)
parente292e8e220756925e934f9080f1d4de95ce13ddf (diff)
downloadgitlab-ce-770a15b0217a7449da381b6adb5b1dd378903e79.tar.gz
Merge branch 'patch-76' into 'master'
Fixed grammar and inconsistencies with capitalization See merge request gitlab-org/gitlab-ce!32337
-rw-r--r--doc/development/python_guide/index.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/development/python_guide/index.md b/doc/development/python_guide/index.md
index a80bee27d4a..47d9d96766c 100644
--- a/doc/development/python_guide/index.md
+++ b/doc/development/python_guide/index.md
@@ -7,9 +7,9 @@ As of GitLab 11.10, we require Python 3.
## Installation
-There are several ways of installing python on your system. To be able to use the same version we use in production,
-we suggest you use [pyenv](https://github.com/pyenv/pyenv). It works and behave similar to its counterpart in the
-ruby world: [rbenv](https://github.com/rbenv/rbenv).
+There are several ways of installing Python on your system. To be able to use the same version we use in production,
+we suggest you use [pyenv](https://github.com/pyenv/pyenv). It works and behaves similarly to its counterpart in the
+Ruby world: [rbenv](https://github.com/rbenv/rbenv).
### macOS
@@ -67,7 +67,7 @@ Running this command will install both the required Python version as well as re
## Use instructions
-To run any python code under the Pipenv environment, you need to first start a `virtualenv` based on the dependencies
+To run any Python code under the Pipenv environment, you need to first start a `virtualenv` based on the dependencies
of the application. With Pipenv, this is a simple as running:
```bash