From 39d6b9b86f5456922a74da276328e649a6c3ee66 Mon Sep 17 00:00:00 2001 From: Koen Wilde Date: Wed, 1 Jun 2022 00:14:06 +0200 Subject: [PATCH] Fix typo in PushOptions docs --- src/remote.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/remote.rs b/src/remote.rs index 4db06e7e11..d2a73858f7 100644 --- a/src/remote.rs +++ b/src/remote.rs @@ -608,13 +608,13 @@ impl<'cb> PushOptions<'cb> { } } - /// Set the callbacks to use for the fetch operation. + /// Set the callbacks to use for the push operation. pub fn remote_callbacks(&mut self, cbs: RemoteCallbacks<'cb>) -> &mut Self { self.callbacks = Some(cbs); self } - /// Set the proxy options to use for the fetch operation. + /// Set the proxy options to use for the push operation. pub fn proxy_options(&mut self, opts: ProxyOptions<'cb>) -> &mut Self { self.proxy = Some(opts); self