summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-11-19 18:22:55 +0100
committerSebastian Thiel <byronimo@gmail.com>2014-11-19 18:23:07 +0100
commit8511513540ece43ac8134f3d28380b96db881526 (patch)
tree6481e89ac08d2122923539dba4fcb73120ae69f4 /doc
parent8a72a7a43ae004f1ae1be392d4322c07b25deff5 (diff)
downloadgitpython-8511513540ece43ac8134f3d28380b96db881526.tar.gz
Fixes #64
[ci skip]
Diffstat (limited to 'doc')
-rw-r--r--doc/source/tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/tutorial.rst b/doc/source/tutorial.rst
index c176ed0c..d9b35fda 100644
--- a/doc/source/tutorial.rst
+++ b/doc/source/tutorial.rst
@@ -39,7 +39,7 @@ Query the active branch, query untracked files or whether the repository data h
Clone from existing repositories or initialize new empty ones::
cloned_repo = repo.clone("to/this/path")
- new_repo = repo.init("path/for/new/repo")
+ new_repo = Repo.init("path/for/new/repo")
Archive the repository contents to a tar file::