Skip to content

Commit abd2026

Browse files
fix some review comments
1 parent f0b9838 commit abd2026

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/tools/lldb-dap/src-ts/debug-adapter-factory.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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", []);

0 commit comments

Comments
 (0)