Skip to content

Commit 4c50b71

Browse files
committed
fix typos
1 parent 4c572b5 commit 4c50b71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/emmylua_ls/src/handlers/signature_helper/build_signature_helper.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ fn build_doc_function_signature_help(
8686
func_type: &LuaFunctionType,
8787
colon_call: bool,
8888
current_idx: usize,
89-
descriotion: Option<String>,
89+
description: Option<String>,
9090
) -> Option<SignatureHelp> {
9191
let semantic_model = builder.semantic_model;
9292
let db = semantic_model.get_db();
@@ -143,7 +143,7 @@ fn build_doc_function_signature_help(
143143
func_type.get_ret(),
144144
);
145145

146-
let documentation = descriotion.map(|description| {
146+
let documentation = description.map(|description| {
147147
Documentation::MarkupContent(MarkupContent {
148148
kind: MarkupKind::Markdown,
149149
value: description,

0 commit comments

Comments
 (0)