Skip to content

Commit acaa8d1

Browse files
committed
Missed some cases.
1 parent 18a108a commit acaa8d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Extension/src/Debugger/lldb-dap-worker.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ async function searchForLldbDap() {
164164
}
165165
}
166166

167-
// Well-known-locations next.
167+
// Well-known locations next.
168168
for (const candidate of candidates) {
169169
if (isMacOS) {
170170
// If that fails, use xcrun to find the path.
@@ -261,13 +261,13 @@ export async function isValidLldbDap(lldbDap: string | undefined) {
261261
}
262262

263263
if (!isMainThread) {
264-
// if this is loaded in a worker thread, we'll set up the remoting interface.
264+
// If this is loaded in a worker thread, we'll set up the remoting interface.
265265
try {
266266
/** This is the SNARE remote call interface dispatcher that the worker thread supports */
267267
remote = parentPort ? startRemoting(parentPort, {
268-
// these are the functions that this worker exposes to the parent thread.
268+
// These are the functions that this worker exposes to the parent thread.
269269
findLldbDapImpl
270-
}) : undefined; // if we're not in a worker thread - then we don't really have a remote interface.
270+
}) : undefined; // If we're not in a worker thread - then we don't really have a remote interface.
271271
initialize(remote);
272272
} catch (e) {
273273
if (e instanceof Error) {

0 commit comments

Comments
 (0)