Skip to content

Commit d59f8b1

Browse files
fmt
1 parent c4bddf3 commit d59f8b1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

crates/pgt_completions/src/providers/functions.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ pub fn complete_functions<'a>(ctx: &'a CompletionContext, builder: &mut Completi
1919
filter: CompletionFilter::from(relevance),
2020
description: format!("Schema: {}", func.schema),
2121
kind: CompletionItemKind::Function,
22-
completion_text: get_completion_text_with_schema_or_alias(ctx, &func.name, &func.schema),
22+
completion_text: get_completion_text_with_schema_or_alias(
23+
ctx,
24+
&func.name,
25+
&func.schema,
26+
),
2327
};
2428

2529
builder.add_item(item);

0 commit comments

Comments
 (0)