CI: format rust code.
This commit is contained in:
parent
14c20c4121
commit
999c992bdf
@ -25,7 +25,14 @@ pub fn plain_link<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s s
|
|||||||
let (remaining, path) = path_plain(context, remaining)?;
|
let (remaining, path) = path_plain(context, remaining)?;
|
||||||
peek(parser_with_context!(post)(context))(remaining)?;
|
peek(parser_with_context!(post)(context))(remaining)?;
|
||||||
let source = get_consumed(input, remaining);
|
let source = get_consumed(input, remaining);
|
||||||
Ok((remaining, PlainLink { source, link_type: proto, path }))
|
Ok((
|
||||||
|
remaining,
|
||||||
|
PlainLink {
|
||||||
|
source,
|
||||||
|
link_type: proto,
|
||||||
|
path,
|
||||||
|
},
|
||||||
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tracing::instrument(ret, level = "debug")]
|
#[tracing::instrument(ret, level = "debug")]
|
||||||
|
Loading…
Reference in New Issue
Block a user