Skip to content

Commit 0d78f48

Browse files
committed
Use "repository" instead of "repo" consistently.
1 parent 5894512 commit 0d78f48

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ make that your current directory with `cd repo2docker`.
3333

3434
### Set up a local virtual environment
3535

36-
After cloning the repository (or your fork of the repo), you should set up an
36+
After cloning the repository (or your fork of the repository), you should set up an
3737
isolated environment to install libraries required for running / developing
3838
repo2docker. There are many ways to do this, and a `virtual environment` is
3939
one of them.
@@ -102,7 +102,7 @@ py.test -s tests/<path-to-test>
102102

103103
## Update and Freeze BuildPack Dependencies
104104

105-
### Updating libraries installed for all repos
105+
### Updating libraries installed for all repositories
106106

107107
For both the `conda` and `virtualenv` (`pip`) base environments in the **Conda BuildPack** and **Python BuildPack**,
108108
we install specific pinned versions of all dependencies. We explicitly list the dependencies

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Documentation Status](https://readthedocs.org/projects/repo2docker/badge/?version=latest)](http://repo2docker.readthedocs.io/en/latest/?badge=latest)
55

66
**jupyter-repo2docker** takes as input a repository source, such as a GitHub
7-
repo. It then builds, runs, and/or pushes Docker images built from that source.
7+
repository. It then builds, runs, and/or pushes Docker images built from that source.
88

99
See the [repo2docker documentation](http://repo2docker.readthedocs.io)
1010
for more information.
@@ -35,8 +35,8 @@ pip install -e .
3535

3636
## Usage
3737

38-
The core feature of repo2docker is to fetch a repo (from github or locally),
39-
build a container image based on the specifications found in the repo &
38+
The core feature of repo2docker is to fetch a repository (from github or locally),
39+
build a container image based on the specifications found in the repository &
4040
optionally launch a local Jupyter Notebook you can use to explore it.
4141

4242
**Note that Docker needs to be running on your machine for this to work.**

docs/source/config_files.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If the folder ``binder/`` is located at the top level of the repository,
2424
The `binder examples <https://github.com/binder-examples>`_ organization on
2525
GitHub contains a list of sample repositories for common configurations
2626
that ``repo2docker`` can build with various configuration files such as
27-
Python and R installation in a repo.
27+
Python and R installation in a repository.
2828

2929
Below is a list of supported configuration files (roughly in the order of build priority):
3030

docs/source/deploy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Step 5. Push Away, Merrill!
103103

104104
Once the environment variables are set up, you can push or issue a pull request
105105
to see circle build the workflow. Remember that you only need the ``.circleci/config.yml``
106-
and not any other files in the repository. If your notebook is hosted in the same repo,
106+
and not any other files in the repository. If your notebook is hosted in the same repository,
107107
you might want to add these, along with your requirements.txt, etc.
108108

109109
.. tip::

docs/source/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ and have found an answer, send a PR to add it here!
55

66
## How should I specify another version of Python 3?
77

8-
One can specify a Python version in the ``environment.yml`` file of a repo.
8+
One can specify a Python version in the ``environment.yml`` file of a repository.
99

1010
## Can I add executable files to the user's PATH?
1111

docs/source/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ jupyter-repo2docker
22
===================
33

44
**jupyter-repo2docker** is a tool to build, run, and push Docker
5-
images from source code repositories. repo2docker fetches a repo
6-
(e.g., from GitHub or other locations) and builds a container image based
7-
on the configuration files found in the repo. It can be used to explore a
8-
repository locally by building and executing the constructed image of the
9-
repository.
5+
images from source code repositories. repo2docker fetches a repository
6+
(e.g., from GitHub or other locations) and builds a container image
7+
based on the configuration files found in the repository. It can be
8+
used to explore a repository locally by building and executing the
9+
constructed image of the repository.
1010

1111
Please report `Bugs <https://github.com/jupyter/repo2docker/issues>`_,
1212
`ask questions <https://gitter.im/jupyterhub/binder>`_ or

docs/source/usage.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ order to run ``repo2docker``. For more information on installing
1010
``repo2docker`` performs two steps:
1111

1212
1. builds a Docker image from a git repo
13-
2. runs a Jupyter server within the image to explore the repo
13+
2. runs a Jupyter server within the image to explore the repository
1414

1515
To ensure you can run the software in your repository, you must
1616

1717
repo2docker is called with this command::
1818

19-
jupyter-repo2docker <URL-or-path to repo>
19+
jupyter-repo2docker <URL-or-path to repository>
2020

21-
where ``<URL-or-path to repo>`` is a URL or path to the source repository.
21+
where ``<URL-or-path to repository>`` is a URL or path to the source repository.
2222

2323
For example, use the following to build an image of Peter Norvig's
2424
Pytudes_::
@@ -38,14 +38,14 @@ specify the ``branch-name`` or ``commit-hash``::
3838
Building the image may take a few minutes.
3939

4040
During building, ``repo2docker``
41-
clones the repository to obtain its contents and inspects the repo for
41+
clones the repository to obtain its contents and inspects the repository for
4242
:ref:`configuration files <config-files>`.
4343

4444
By default, ``repo2docker`` will assume you are using
4545
Python 3.6 unless you include the version of Python in your
4646
:ref:`configuration files <config-files>`. ``repo2docker`` support is best with
47-
Python 2.7, 3.5, and 3.6. In the case of this repo, a Python version is not
48-
specified in their configuation files and Python 3.6 is installed.
47+
Python 2.7, 3.5, and 3.6. In the case of this repository, a Python version is not
48+
specified in their configuration files and Python 3.6 is installed.
4949

5050
Pytudes_
5151
uses a `requirements.txt file <https://github.com/norvig/pytudes/blob/master/requirements.txt>`_

0 commit comments

Comments
 (0)