Skip to content

Commit

Permalink
chore: change name of 'rebuild imports' button (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhuisi authored Dec 22, 2023
1 parent 1711678 commit 8d8c17e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vscode-lean4/src/leanclient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ export class LeanClient implements Disposable {
return
}

const message = `Imports of '${fileName}' are out of date and must be rebuilt.`
const input = 'Rebuild Imports'
const message = `Imports of '${fileName}' are out of date and must be rebuilt. Restarting the file will rebuild them.`
const input = 'Restart File'
const choice = await window.showInformationMessage(message, input)
if (choice !== input) {
return
Expand Down

0 comments on commit 8d8c17e

Please sign in to comment.