Skip to content

Commit

Permalink
Update tooltip to invert default description for namedargs (#1418)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-azyra authored Jan 19, 2024
1 parent c5b41a6 commit 5be8c02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/Help/Topics/PropPage-Language.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<para styleclass="Normal">Allow Named Arguments</para>
</td>
<td>
<para styleclass="Normal">Allow named arguments (Default = FALSE for the Core dialect and TRUE for the other dialects). Changing the dialect may also automatically change this setting.</para>
<para styleclass="Normal">Allow named arguments (Default = TRUE for the Core dialect and FALSE for the other dialects). Changing the dialect may also automatically change this setting.</para>
</td>
<td>
<para styleclass="Normal"><link displaytype="text" defaultstyle="true" type="topiclink" href="opt-namedargs">/namedargs</link></para>
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/XSharpCodeModelXs/Settings/Strings.prg
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class LanguagePropertyPagePanel
const AZDescription := "Use Zero Based Arrays (/az)" as string
const INSDescription := "Enable the implicit lookup of classes defined in assemblies with an Implicit Namespace attribute (/ins)" as string
const LBDescription := "Allow property access and method calls on expressions of type OBJECT and USUAL (/lb)" as string
const NamedArgDescription := "Allow named arguments (Default = FALSE for the Core dialect and TRUE for the other dialects). Changing the dialect may also automatically change this setting. (/namedargs)" as string
const NamedArgDescription := "Allow named arguments (Default = TRUE for the Core dialect and FALSE for the other dialects). Changing the dialect may also automatically change this setting. (/namedargs)" as string
const NSDescription := "Prefix all classes that do not have a namespace prefix and are not in a begin namespace ... end namespace block with the namespace of the assembly (/ns:<Namespace>)" as string
const OVFDescription := "Check for Overflow and Underflow for numeric expressions, like the CHECKED keyword. (/ovf)" as string
const UnsafeDescription := "Allow Unsafe code inside this assembly (/unsafe)" as string
Expand Down

0 comments on commit 5be8c02

Please sign in to comment.