diff --git a/src/fsharp/FSComp.txt b/src/fsharp/FSComp.txt index 7914b2e69192..cb5b86f8e27c 100644 --- a/src/fsharp/FSComp.txt +++ b/src/fsharp/FSComp.txt @@ -1378,6 +1378,7 @@ keywordDescriptionAssert,"Used to verify code during debugging." keywordDescriptionBase,"Used as the name of the base class object." keywordDescriptionBegin,"In verbose syntax, indicates the start of a code block." keywordDescriptionClass,"In verbose syntax, indicates the start of a class definition." +keywordDescriptionConst, "Keyword to specify a constant literal as a type parameter argument in Type Providers." keywordDescriptionDefault,"Indicates an implementation of an abstract method; used together with an abstract method declaration to create a virtual method." keywordDescriptionDelegate,"Used to declare a delegate." keywordDescriptionDo,"Used in looping constructs or to execute imperative code." diff --git a/src/fsharp/lexhelp.fs b/src/fsharp/lexhelp.fs index d4936792ec72..26a50de6f28b 100644 --- a/src/fsharp/lexhelp.fs +++ b/src/fsharp/lexhelp.fs @@ -410,6 +410,7 @@ module Keywords = "base", FSComp.SR.keywordDescriptionBase() "begin", FSComp.SR.keywordDescriptionBegin() "class", FSComp.SR.keywordDescriptionClass() + "const", FSComp.SR.keywordDescriptionConst() "default", FSComp.SR.keywordDescriptionDefault() "delegate", FSComp.SR.keywordDescriptionDelegate() "do", FSComp.SR.keywordDescriptionDo()