Run cargo fmt

This commit is contained in:
Amos Wenger 2022-07-20 15:06:15 +02:00
parent 8318035726
commit 7e285e1ef5
35 changed files with 190 additions and 45 deletions

View file

@ -188,7 +188,10 @@ impl<'a> PathSegments<'a> {
}
impl GenericArgs {
pub(crate) fn from_ast(lower_ctx: &LowerCtx<'_>, node: ast::GenericArgList) -> Option<GenericArgs> {
pub(crate) fn from_ast(
lower_ctx: &LowerCtx<'_>,
node: ast::GenericArgList,
) -> Option<GenericArgs> {
lower::lower_generic_args(lower_ctx, node)
}