File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
git-packetline/src/immutable Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ impl<'a> PacketLine<'a> {
31
31
///
32
32
/// This works for any data received in an error [channel][crate::Channel].
33
33
///
34
- /// Note that this creates an unchecked error using the slice verbatim, which is useful to [serialize it][Error::to_write ()].
34
+ /// Note that this creates an unchecked error using the slice verbatim, which is useful to [serialize it][Error::write_to ()].
35
35
/// See [`check_error()`][PacketLine::check_error()] for a version that assures the error information is in the expected format.
36
36
pub fn as_error ( & self ) -> Option < Error < ' _ > > {
37
37
self . as_slice ( ) . map ( Error )
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ pub enum Subcommands {
94
94
95
95
/// The URLs or path from which to receive the pack.
96
96
///
97
- /// See here for a list of supported URLs: https://www.git-scm.com/docs/git-clone#_git_urls
97
+ /// See here for a list of supported URLs: < https://www.git-scm.com/docs/git-clone#_git_urls>
98
98
url : String ,
99
99
100
100
/// The directory into which to write the received pack and index.
@@ -105,7 +105,7 @@ pub enum Subcommands {
105
105
/// List remote references from a remote identified by a url.
106
106
///
107
107
/// This is the plumbing equivalent of `git ls-remote`.
108
- /// Supported URLs are documented here: https://www.git-scm.com/docs/git-clone#_git_urls
108
+ /// Supported URLs are documented here: < https://www.git-scm.com/docs/git-clone#_git_urls>
109
109
#[ clap( setting = AppSettings :: ColoredHelp ) ]
110
110
#[ clap( setting = AppSettings :: DisableVersion ) ]
111
111
#[ cfg( any( feature = "gitoxide-core-async-client" , feature = "gitoxide-core-blocking-client" ) ) ]
@@ -116,7 +116,7 @@ pub enum Subcommands {
116
116
117
117
/// the URLs or path from which to receive references
118
118
///
119
- /// See here for a list of supported URLs: https://www.git-scm.com/docs/git-clone#_git_urls
119
+ /// See here for a list of supported URLs: < https://www.git-scm.com/docs/git-clone#_git_urls>
120
120
url : String ,
121
121
} ,
122
122
#[ clap( setting = AppSettings :: ColoredHelp ) ]
You can’t perform that action at this time.
0 commit comments