Skip to content

Fix typos in PushOptions docs #846

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down