We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11e9e4b commit 06b7175Copy full SHA for 06b7175
editors/code/src/cargo.ts
@@ -56,7 +56,7 @@ export class Cargo {
56
}
57
58
public async executableFromArgs(args: string[]): Promise<string> {
59
- let cargoArgs = [...args]; // to remain args unchanged
+ const cargoArgs = [...args]; // to remain args unchanged
60
cargoArgs.push("--message-format=json");
61
62
const artifacts = await this.artifactsFromArgs(cargoArgs);
0 commit comments