diff options
author | yogabonito <yogabonito@users.noreply.github.com> | 2021-12-01 00:42:39 +0100 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-12-01 08:10:15 +0800 |
commit | 2141eaef76fdfb2775dde45d087b34144d34a1fb (patch) | |
tree | f7e32403778f5cbcebc4414a77ecb162ab75aef4 /doc | |
parent | 62131f3905ac37ff841142e2bb04bb585401a3d8 (diff) | |
download | gitpython-2141eaef76fdfb2775dde45d087b34144d34a1fb.tar.gz |
DOC: fix typo
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/tutorial.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/tutorial.rst b/doc/source/tutorial.rst index 303e89cf..bc386e7c 100644 --- a/doc/source/tutorial.rst +++ b/doc/source/tutorial.rst @@ -8,9 +8,9 @@ GitPython Tutorial ================== -GitPython provides object model access to your git repository. This tutorial is composed of multiple sections, most of which explains a real-life usecase. +GitPython provides object model access to your git repository. This tutorial is composed of multiple sections, most of which explain a real-life use case. -All code presented here originated from `test_docs.py <https://github.com/gitpython-developers/GitPython/blob/main/test/test_docs.py>`_ to assure correctness. Knowing this should also allow you to more easily run the code for your own testing purposes, all you need is a developer installation of git-python. +All code presented here originated from `test_docs.py <https://github.com/gitpython-developers/GitPython/blob/main/test/test_docs.py>`_ to assure correctness. Knowing this should also allow you to more easily run the code for your own testing purposes. All you need is a developer installation of git-python. Meet the Repo type ****************** |