Skip to content

Commit

Permalink
Label format
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinRansom committed Jul 12, 2019
1 parent 178e902 commit 486123a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fsharp/LanguageFeatures.fs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ type LanguageVersion (specifiedVersion) =
/// Get a list of valid versions for help text
member __.ValidVersions = [|
for v in languageVersions |> Seq.sort do
let label = if v = defaultVersion || v = latestVersion then "(Default)" else ""
yield sprintf "%M %s" v label
let label = if v = defaultVersion then " (Default)" else ""
yield sprintf "%M%s" v label
|]

0 comments on commit 486123a

Please sign in to comment.