Skip to content

Commit 06b7175

Browse files
committed
fixed lint warning
1 parent 11e9e4b commit 06b7175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/cargo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class Cargo {
5656
}
5757

5858
public async executableFromArgs(args: string[]): Promise<string> {
59-
let cargoArgs = [...args]; // to remain args unchanged
59+
const cargoArgs = [...args]; // to remain args unchanged
6060
cargoArgs.push("--message-format=json");
6161

6262
const artifacts = await this.artifactsFromArgs(cargoArgs);

0 commit comments

Comments
 (0)