From 5781ef4706af66b6f2d67cda36547ec4ad22da9c Mon Sep 17 00:00:00 2001 From: Natanael Arndt Date: Tue, 27 Feb 2018 17:21:18 +0100 Subject: [PATCH] Fix typo in remote.py docstrings --- pygit2/remote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pygit2/remote.py b/pygit2/remote.py index 47e5c7ed3..ac00c75e7 100644 --- a/pygit2/remote.py +++ b/pygit2/remote.py @@ -128,7 +128,7 @@ def credentials(self, url, username_from_url, allowed_types): def certificate_check(self, certificate, valid, host): """ Certificate callback. Override with your own function to determine - whether the accept the server's certificate. + whether to accept the server's certificate. Returns: True to connect, False to abort. @@ -178,7 +178,7 @@ def update_tips(self, refname, old, new): def push_update_reference(self, refname, message): """ Push update reference callback. Override with your own function to - report the remote's acceptace or rejection of reference updates. + report the remote's acceptance or rejection of reference updates. refname : str The name of the reference (on the remote).