File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lldb/tools/lldb-dap/src-ts Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ async function getDAPArguments(
118118 workspaceFolder : vscode . WorkspaceFolder | undefined ,
119119 configuration : vscode . DebugConfiguration ,
120120) : Promise < string [ ] > {
121- // Check the debug configuration for arguments first
121+ // Check the debug configuration for arguments first.
122122 const debugConfigArgs = configuration . debugAdapterArgs ;
123123 if ( debugConfigArgs ) {
124124 if (
@@ -132,7 +132,7 @@ async function getDAPArguments(
132132 }
133133 return debugConfigArgs ;
134134 }
135- // Fall back on the workspace configuration
135+ // Fall back on the workspace configuration.
136136 return vscode . workspace
137137 . getConfiguration ( "lldb-dap" , workspaceFolder )
138138 . get < string [ ] > ( "arguments" , [ ] ) ;
You can’t perform that action at this time.
0 commit comments