Skip to content

Commit 19b658b

Browse files
committed
修复错误
1 parent 111a848 commit 19b658b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeFormatServer/src/Service/ModuleService.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ std::vector<vscode::CompletionItem> ModuleService::GetModuleCompletions(std::sha
259259
{
260260
auto& luaModule = pair.second.front();
261261
completion.detail = Util::format("({})", name);
262-
completion.documentation = format("import from {}", luaModule->FilePath);
262+
completion.documentation = Util::format("import from {}", luaModule->FilePath);
263263
auto object = nlohmann::json::object();
264264
object["moduleName"] = luaModule->ModuleName;
265265
object["path"] = luaModule->FilePath;

0 commit comments

Comments
 (0)