Skip to content

Commit

Permalink
Clarify enum option in Dafny version picker (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyboardDrummer authored Aug 15, 2023
1 parent 63e5d7f commit e3f00e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
"dafny.version": {
"type": "string",
"enum": [
"latest",
"latest stable release",
"4.2.0",
"4.1.0",
"4.0.0",
Expand All @@ -247,7 +247,7 @@
"custom",
"latest nightly"
],
"default": "latest",
"default": "latest stable release",
"description": "The preferred Dafny version to use (requires restart)."
},
"dafny.dotnetExecutablePath": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export namespace DotnetConstants {
}

export namespace LanguageServerConstants {
export const LatestStable = 'latest';
export const LatestStable = 'latest stable release';
export const LatestNightly = 'latest nightly';
export const Custom = 'custom';
export const LatestVersion = '4.2.0';
Expand Down

0 comments on commit e3f00e2

Please sign in to comment.