From 0de01ed486b50f0acddf0047f39184ba0d8cfae4 Mon Sep 17 00:00:00 2001 From: Casey Langen Date: Mon, 9 Nov 2020 21:29:32 -0800 Subject: [PATCH] Fixed comment typos --- src/musikcore/library/RemoteLibrary.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/musikcore/library/RemoteLibrary.cpp b/src/musikcore/library/RemoteLibrary.cpp index 66a8b23df..a475e99d6 100644 --- a/src/musikcore/library/RemoteLibrary.cpp +++ b/src/musikcore/library/RemoteLibrary.cpp @@ -298,9 +298,9 @@ void RemoteLibrary::RunQueryOnLoopback(QueryContextPtr context) { if (context) { /* do everything via loopback to the local library for testing. we do, however, go through the motions by serializing the inbound query to a string, then - bouncing through the QueryRegister to create a new instance, run the query + bouncing through the QueryRegistry to create a new instance, run the query locally, serialize the result, then deserialize it again to emulate the entire - flow. */ + round trip. */ auto localLibrary = LibraryFactory::Instance().DefaultLocalLibrary(); localLibrary->SetMessageQueue(*this->messageQueue);