We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a3b107 commit b10d42bCopy full SHA for b10d42b
arduino-ide-extension/src/browser/theia/workspace/workspace-commands.ts
@@ -130,7 +130,7 @@ export class WorkspaceCommandContribution extends TheiaWorkspaceCommandContribut
130
if (errorMessage) {
131
return this.maybeRemapAlreadyExistsMessage(errorMessage, userInput);
132
}
133
- // It's a legacy behavior from IDE 1.x. Validate the file it were an `.ino` file.
+ // It's a legacy behavior from IDE 1.x. Validate the file as if it were an `.ino` file.
134
// If user did not write the `.ino` extension or ended the user input with dot, run the default Theia validation with the inferred name.
135
if (extension === '.ino' && !userInput.endsWith('.ino')) {
136
userInput = `${name}${extension}`;
0 commit comments