File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
263263if ( ! 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 ) {
You can’t perform that action at this time.
0 commit comments