Skip to content

Commit 7c722f3

Browse files
it linted
1 parent 5631e9a commit 7c722f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/pgt_completions/src/providers/columns.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub fn complete_columns<'a>(ctx: &CompletionContext<'a>, builder: &mut Completio
2020
description: format!("Table: {}.{}", col.schema_name, col.table_name),
2121
kind: CompletionItemKind::Column,
2222
completion_text: None,
23-
detail: Some(format!("{}", col.type_name)),
23+
detail: Some(col.type_name.to_string()),
2424
};
2525

2626
// autocomplete with the alias in a join clause if we find one

0 commit comments

Comments
 (0)