We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e6ac61 commit 1fa14c1Copy full SHA for 1fa14c1
1 file changed
perceval/github.md
@@ -234,8 +234,8 @@ args = parser.parse_args()
234
235
# create a Git object, pointing to repo_url, using repo_dir for cloning
236
repo = GitHub(owner=owner, repository=repo, api_token=args.token)
237
-# fetch all issues/pull requests as an iteratoir, and iterate it printing
238
-# their number, and whether they are issues or pull requessts
+# fetch all issues/pull requests as an iterator, and iterate it printing
+# their number, and whether they are issues or pull requests
239
for item in repo.fetch():
240
if 'pull_request' in item['data']:
241
kind = 'Pull request'
0 commit comments