Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-09-23 12:06:22 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-09-23 12:06:22 +0300
commit1d89871c573830a8194110af252e8907177184b3 (patch)
tree9aece724c48fc633f38c3b8cbaf2f71fcf4c3f4c /doc/ci/caching/index.md
parent89861e72b7375353654513aa2bc0a3b60a5e4377 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/ci/caching/index.md')
-rw-r--r--doc/ci/caching/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ci/caching/index.md b/doc/ci/caching/index.md
index 558229187f1..76ee4829a3d 100644
--- a/doc/ci/caching/index.md
+++ b/doc/ci/caching/index.md
@@ -202,7 +202,7 @@ For more fine tuning, read also about the
The most common use case of cache is to preserve contents between subsequent
runs of jobs for things like dependencies and commonly used libraries
-(Nodejs packages, PHP packages, rubygems, python libraries, etc.),
+(Nodejs packages, PHP packages, rubygems, Python libraries, etc.),
so they don't have to be re-fetched from the public internet.
NOTE: **Note:**
@@ -268,7 +268,7 @@ test:
### Caching Python dependencies
Assuming your project is using [pip](https://pip.pypa.io/en/stable/) to install
-the python dependencies, the following example defines `cache` globally so that
+the Python dependencies, the following example defines `cache` globally so that
all jobs inherit it. Python libraries are installed in a virtualenv under `venv/`,
pip's cache is defined under `.cache/pip/` and both are cached per-branch: