Skip to content

Commit

Permalink
updated test cases
Browse files Browse the repository at this point in the history
Signed-off-by: shruti2522 <shruti.apc01@gmail.com>
  • Loading branch information
shruti2522 committed May 19, 2024
1 parent 9a88b99 commit cd4a530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kclvm/tools/src/LSP/src/hover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ fn build_func_hover_content(func_ty: &FunctionType, name: String) -> Vec<String>
docs.push(self_ty);
}
let func_str = add_markup(&format!("fn {}", name));
let mut sig = add_markup(&format!("{}(", func_str));
let mut sig = format!("{}(", func_str);
if func_ty.params.is_empty() {
sig.push(')');
} else {
Expand Down

0 comments on commit cd4a530

Please sign in to comment.