We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c572b5 commit 4c50b71Copy full SHA for 4c50b71
crates/emmylua_ls/src/handlers/signature_helper/build_signature_helper.rs
@@ -86,7 +86,7 @@ fn build_doc_function_signature_help(
86
func_type: &LuaFunctionType,
87
colon_call: bool,
88
current_idx: usize,
89
- descriotion: Option<String>,
+ description: Option<String>,
90
) -> Option<SignatureHelp> {
91
let semantic_model = builder.semantic_model;
92
let db = semantic_model.get_db();
@@ -143,7 +143,7 @@ fn build_doc_function_signature_help(
143
func_type.get_ret(),
144
);
145
146
- let documentation = descriotion.map(|description| {
+ let documentation = description.map(|description| {
147
Documentation::MarkupContent(MarkupContent {
148
kind: MarkupKind::Markdown,
149
value: description,
0 commit comments