summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCodeComprehension/Shell/ConnectionFromClient.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibCodeComprehension/Shell/ConnectionFromClient.h')
-rw-r--r--Userland/Libraries/LibCodeComprehension/Shell/ConnectionFromClient.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCodeComprehension/Shell/ConnectionFromClient.h b/Userland/Libraries/LibCodeComprehension/Shell/ConnectionFromClient.h
index edebd3de35..e427b1175a 100644
--- a/Userland/Libraries/LibCodeComprehension/Shell/ConnectionFromClient.h
+++ b/Userland/Libraries/LibCodeComprehension/Shell/ConnectionFromClient.h
@@ -19,7 +19,7 @@ private:
ConnectionFromClient(NonnullOwnPtr<Core::Stream::LocalSocket> socket)
: LanguageServers::ConnectionFromClient(move(socket))
{
- m_autocomplete_engine = make<ShellComprehensionEngine>(m_filedb);
+ m_autocomplete_engine = make<CodeComprehension::Shell::ShellComprehensionEngine>(m_filedb);
m_autocomplete_engine->set_declarations_of_document_callback = [this](String const& filename, Vector<CodeComprehension::Declaration>&& declarations) {
async_declarations_in_document(filename, move(declarations));
};