diff --git a/generateDocstrings.py b/generateDocstrings.py
index 9c842d14..61ceeac9 100755
--- a/generateDocstrings.py
+++ b/generateDocstrings.py
@@ -35,7 +35,7 @@ class Generator():
return None
else:
return [
- "This class represents " + className + "s as returned for example by http://developer.github.com/v3/"
+ "This class represents " + className + "s as returned for example by http://developer.github.com/v3/todo"
]
def getMemberDocstring(self, className, memberName):
@@ -49,7 +49,7 @@ class Generator():
]
elif memberName in classDescription.methods:
return [
- ":calls: `" + classDescription.methods[memberName].verb + " " + classDescription.methods[memberName].url + " `_",
+ ":calls: `" + classDescription.methods[memberName].verb + " " + classDescription.methods[memberName].url + " `_",
# ":auth. level: ?",
] + [
":param " + parameterName + ": " + self.__formatType(parameterType) for parameterName, parameterType in classDescription.methods[memberName].parameters.items()
diff --git a/github/PaginatedList.py b/github/PaginatedList.py
index b3c986c9..20d8447a 100644
--- a/github/PaginatedList.py
+++ b/github/PaginatedList.py
@@ -70,7 +70,7 @@ class PaginatedListBase:
class PaginatedList(PaginatedListBase):
"""
- This class abstracts the `pagination of the API `_.
+ This class abstracts the `pagination of the API `_.
You can simply enumerate through instances of this class:
diff --git a/setup.py b/setup.py
index 4452a4e5..70a4d980 100755
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@
import setuptools
import textwrap
-version = "1.10.0"
+version = "1.10.1",
if __name__ == "__main__":
setuptools.setup(