diff --git a/src/Compilers/CSharp/Portable/Binder/Semantics/Conversions/Conversion.cs b/src/Compilers/CSharp/Portable/Binder/Semantics/Conversions/Conversion.cs index 39cf698f0dc7f..98ef948dea2c5 100644 --- a/src/Compilers/CSharp/Portable/Binder/Semantics/Conversions/Conversion.cs +++ b/src/Compilers/CSharp/Portable/Binder/Semantics/Conversions/Conversion.cs @@ -1046,7 +1046,7 @@ internal UserDefinedConversionAnalysis? BestUserDefinedConversionAnalysis } /// - /// Creates a from this C# conversion. + /// Creates a from this C# conversion. /// /// The that represents this conversion. /// diff --git a/src/Compilers/Core/Portable/MetadataReference/AssemblyMetadata.cs b/src/Compilers/Core/Portable/MetadataReference/AssemblyMetadata.cs index d8ea338e14d25..4b3a1619073cc 100644 --- a/src/Compilers/Core/Portable/MetadataReference/AssemblyMetadata.cs +++ b/src/Compilers/Core/Portable/MetadataReference/AssemblyMetadata.cs @@ -428,7 +428,7 @@ internal bool IsValidAssembly() } /// - /// Returns the metadata kind. + /// Returns the metadata kind. /// public override MetadataImageKind Kind { diff --git a/src/Compilers/Core/Portable/RuleSet/RuleSet.cs b/src/Compilers/Core/Portable/RuleSet/RuleSet.cs index 0f26e5a62ccb3..362da93e25f45 100644 --- a/src/Compilers/Core/Portable/RuleSet/RuleSet.cs +++ b/src/Compilers/Core/Portable/RuleSet/RuleSet.cs @@ -246,7 +246,7 @@ private static bool IsStricterThan(ReportDiagnostic action1, ReportDiagnostic ac /// /// Load the ruleset from the specified file. This ruleset will contain /// all the rules resolved from the includes specified in the ruleset file - /// as well. See also: . + /// as well. See also: . /// /// /// A ruleset that contains resolved rules or null if there were errors. @@ -259,7 +259,7 @@ public static RuleSet LoadEffectiveRuleSetFromFile(string filePath) /// /// Get the paths to all files contributing rules to the ruleset from the specified file. - /// See also: . + /// See also: . /// /// /// The full paths to included files, or an empty array if there were errors. diff --git a/src/Compilers/Core/Portable/SymbolDisplay/SymbolDisplayFormat.cs b/src/Compilers/Core/Portable/SymbolDisplay/SymbolDisplayFormat.cs index 20f8c6d92d74c..70928557f49e7 100644 --- a/src/Compilers/Core/Portable/SymbolDisplay/SymbolDisplayFormat.cs +++ b/src/Compilers/Core/Portable/SymbolDisplay/SymbolDisplayFormat.cs @@ -427,12 +427,12 @@ internal SymbolDisplayFormat( } /// - /// Creates a copy of the SymbolDisplayFormat but with replaced set of . + /// Creates a copy of the SymbolDisplayFormat but with replaced set of . /// /// /// An object representing how miscellaneous symbols will be formatted. /// - /// A duplicate of the SymbolDisplayFormat, with a replaced set of . + /// A duplicate of the SymbolDisplayFormat, with a replaced set of . public SymbolDisplayFormat WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions options) { return new SymbolDisplayFormat( @@ -452,36 +452,36 @@ public SymbolDisplayFormat WithMiscellaneousOptions(SymbolDisplayMiscellaneousOp } /// - /// Creates a copy of the SymbolDisplayFormat but with an additional set of . + /// Creates a copy of the SymbolDisplayFormat but with an additional set of . /// /// /// An object specifying additional parameters for how miscellaneous symbols will be formatted. /// - /// A duplicate of the SymbolDisplayFormat, with an additional set of . + /// A duplicate of the SymbolDisplayFormat, with an additional set of . public SymbolDisplayFormat AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions options) { return this.WithMiscellaneousOptions(this.MiscellaneousOptions | options); } /// - /// Creates a copy of the SymbolDisplayFormat without the specified . + /// Creates a copy of the SymbolDisplayFormat without the specified . /// /// /// An object specifying which parameters should not be applied to how miscellaneous symbols will be formatted. /// - /// A duplicate of the SymbolDisplayFormat, without the specified . + /// A duplicate of the SymbolDisplayFormat, without the specified . public SymbolDisplayFormat RemoveMiscellaneousOptions(SymbolDisplayMiscellaneousOptions options) { return this.WithMiscellaneousOptions(this.MiscellaneousOptions & ~options); } /// - /// Creates a copy of the SymbolDisplayFormat but with replaced set of . + /// Creates a copy of the SymbolDisplayFormat but with replaced set of . /// /// /// An object specifying how generic symbols will be formatted. /// - /// A duplicate of the SymbolDisplayFormat, with a replaced set of . + /// A duplicate of the SymbolDisplayFormat, with a replaced set of . public SymbolDisplayFormat WithGenericsOptions(SymbolDisplayGenericsOptions options) { return new SymbolDisplayFormat( @@ -500,25 +500,25 @@ public SymbolDisplayFormat WithGenericsOptions(SymbolDisplayGenericsOptions opti } /// - /// Creates a copy of the SymbolDisplayFormat but with an additional set of . + /// Creates a copy of the SymbolDisplayFormat but with an additional set of . /// /// /// An object specifying additional parameters for how generic symbols will be formatted. /// - /// A duplicate of the SymbolDisplayFormat, with an additional set of . + /// A duplicate of the SymbolDisplayFormat, with an additional set of . public SymbolDisplayFormat AddGenericsOptions(SymbolDisplayGenericsOptions options) { return this.WithGenericsOptions(this.GenericsOptions | options); } /// - /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. + /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. /// /// /// An object specifying which parameters should not be applied to how generic symbols will be formatted. /// /// - /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. + /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. /// public SymbolDisplayFormat RemoveGenericsOptions(SymbolDisplayGenericsOptions options) { @@ -526,12 +526,12 @@ public SymbolDisplayFormat RemoveGenericsOptions(SymbolDisplayGenericsOptions op } /// - /// Creates a copy of the SymbolDisplayFormat but with replaced set of . + /// Creates a copy of the SymbolDisplayFormat but with replaced set of . /// /// /// An object specifying how members will be formatted. /// - /// A duplicate of the SymbolDisplayFormat, with a replaced set of . + /// A duplicate of the SymbolDisplayFormat, with a replaced set of . public SymbolDisplayFormat WithMemberOptions(SymbolDisplayMemberOptions options) { return new SymbolDisplayFormat( @@ -550,13 +550,13 @@ public SymbolDisplayFormat WithMemberOptions(SymbolDisplayMemberOptions options) } /// - /// Creates a copy of the SymbolDisplayFormat but with an additional set of . + /// Creates a copy of the SymbolDisplayFormat but with an additional set of . /// /// /// An object specifying additional parameters for how members will be formatted. /// /// - /// A duplicate of the SymbolDisplayFormat, with an additional set of . + /// A duplicate of the SymbolDisplayFormat, with an additional set of . /// public SymbolDisplayFormat AddMemberOptions(SymbolDisplayMemberOptions options) { @@ -564,13 +564,13 @@ public SymbolDisplayFormat AddMemberOptions(SymbolDisplayMemberOptions options) } /// - /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. + /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. /// /// /// An object specifying which parameters should not be applied to how members will be formatted. /// /// - /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. + /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. /// public SymbolDisplayFormat RemoveMemberOptions(SymbolDisplayMemberOptions options) { @@ -578,13 +578,13 @@ public SymbolDisplayFormat RemoveMemberOptions(SymbolDisplayMemberOptions option } /// - /// Creates a copy of the SymbolDisplayFormat but with replaced set of . + /// Creates a copy of the SymbolDisplayFormat but with replaced set of . /// /// /// An object specifying parameters with which symbols belonging to kind keywords should be formatted. /// /// - /// A duplicate of the SymbolDisplayFormat, with a replaced set of . + /// A duplicate of the SymbolDisplayFormat, with a replaced set of . /// public SymbolDisplayFormat WithKindOptions(SymbolDisplayKindOptions options) { @@ -604,13 +604,13 @@ public SymbolDisplayFormat WithKindOptions(SymbolDisplayKindOptions options) } /// - /// Creates a copy of the SymbolDisplayFormat but with an additional set of . + /// Creates a copy of the SymbolDisplayFormat but with an additional set of . /// /// /// An object specifying additional parameters with which symbols belonging to kind keywords should be formatted. /// /// - /// A duplicate of the SymbolDisplayFormat, with an additional set of . + /// A duplicate of the SymbolDisplayFormat, with an additional set of . /// public SymbolDisplayFormat AddKindOptions(SymbolDisplayKindOptions options) { @@ -618,13 +618,13 @@ public SymbolDisplayFormat AddKindOptions(SymbolDisplayKindOptions options) } /// - /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. + /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. /// /// /// The settings that determine other characteristics of how symbols are displayed. /// /// - /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. + /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. /// public SymbolDisplayFormat RemoveKindOptions(SymbolDisplayKindOptions options) { @@ -632,12 +632,12 @@ public SymbolDisplayFormat RemoveKindOptions(SymbolDisplayKindOptions options) } /// - /// Creates a copy of the SymbolDisplayFormat but with replaced set of . + /// Creates a copy of the SymbolDisplayFormat but with replaced set of . /// /// /// An object specifying how parameters should be formatted. /// - /// A duplicate of the SymbolDisplayFormat, with a replaced set of . + /// A duplicate of the SymbolDisplayFormat, with a replaced set of . public SymbolDisplayFormat WithParameterOptions(SymbolDisplayParameterOptions options) { return new SymbolDisplayFormat( @@ -656,13 +656,13 @@ public SymbolDisplayFormat WithParameterOptions(SymbolDisplayParameterOptions op } /// - /// Creates a copy of the SymbolDisplayFormat but with an additional set of . + /// Creates a copy of the SymbolDisplayFormat but with an additional set of . /// /// /// An object specifying additional parameters on how parameters should be formatted. /// /// - /// A duplicate of the SymbolDisplayFormat, with an additional set of . + /// A duplicate of the SymbolDisplayFormat, with an additional set of . /// public SymbolDisplayFormat AddParameterOptions(SymbolDisplayParameterOptions options) { @@ -670,13 +670,13 @@ public SymbolDisplayFormat AddParameterOptions(SymbolDisplayParameterOptions opt } /// - /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. + /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. /// /// /// An object specifying parameters that should not be applied when formatting parameters. /// /// - /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. + /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. /// public SymbolDisplayFormat RemoveParameterOptions(SymbolDisplayParameterOptions options) { @@ -684,12 +684,12 @@ public SymbolDisplayFormat RemoveParameterOptions(SymbolDisplayParameterOptions } /// - /// Creates a copy of the SymbolDisplayFormat but with replaced . + /// Creates a copy of the SymbolDisplayFormat but with replaced . /// /// /// An object specifying parameters on how namespace symbols should be formatted. /// - /// A duplicate of the SymbolDisplayFormat, with a replaced set of . + /// A duplicate of the SymbolDisplayFormat, with a replaced set of . public SymbolDisplayFormat WithGlobalNamespaceStyle(SymbolDisplayGlobalNamespaceStyle style) { return new SymbolDisplayFormat( @@ -708,12 +708,12 @@ public SymbolDisplayFormat WithGlobalNamespaceStyle(SymbolDisplayGlobalNamespace } /// - /// Creates a copy of the SymbolDisplayFormat but with replaced set of . + /// Creates a copy of the SymbolDisplayFormat but with replaced set of . /// /// /// An object specifying parameters on how symbols belonging to locals should be formatted. /// - /// A duplicate of the SymbolDisplayFormat, with a replaced set of . + /// A duplicate of the SymbolDisplayFormat, with a replaced set of . public SymbolDisplayFormat WithLocalOptions(SymbolDisplayLocalOptions options) { return new SymbolDisplayFormat( @@ -732,13 +732,13 @@ public SymbolDisplayFormat WithLocalOptions(SymbolDisplayLocalOptions options) } /// - /// Creates a copy of the SymbolDisplayFormat but with an additional set of . + /// Creates a copy of the SymbolDisplayFormat but with an additional set of . /// /// /// An object specifying additional parameters on how symbols belonging to locals should be formatted. /// /// - /// A duplicate of the SymbolDisplayFormat, with an additional set of . + /// A duplicate of the SymbolDisplayFormat, with an additional set of . /// public SymbolDisplayFormat AddLocalOptions(SymbolDisplayLocalOptions options) { @@ -746,13 +746,13 @@ public SymbolDisplayFormat AddLocalOptions(SymbolDisplayLocalOptions options) } /// - /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. + /// Creates a copy of the SymbolDisplayFormat but with a set of stripped away from the original object. /// /// /// An object specifying parameters that should not be applied when formatting symbols belonging to locals. /// /// - /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. + /// A duplicate of the SymbolDisplayFormat, with a set of stripped away from the original object. /// public SymbolDisplayFormat RemoveLocalOptions(SymbolDisplayLocalOptions options) { @@ -760,13 +760,13 @@ public SymbolDisplayFormat RemoveLocalOptions(SymbolDisplayLocalOptions options) } /// - /// Creates a copy of the SymbolDisplayFormat but with added set of . + /// Creates a copy of the SymbolDisplayFormat but with added set of . /// internal SymbolDisplayFormat AddCompilerInternalOptions(SymbolDisplayCompilerInternalOptions options) => WithCompilerInternalOptions(this.CompilerInternalOptions | options); /// - /// Creates a copy of the SymbolDisplayFormat but with replaced set of . + /// Creates a copy of the SymbolDisplayFormat but with replaced set of . /// internal SymbolDisplayFormat WithCompilerInternalOptions(SymbolDisplayCompilerInternalOptions options) { diff --git a/src/Compilers/Core/Portable/SymbolDisplay/SymbolDisplayPropertyStyle.cs b/src/Compilers/Core/Portable/SymbolDisplay/SymbolDisplayPropertyStyle.cs index 009fa22bc5126..2cc5a3dbc49df 100644 --- a/src/Compilers/Core/Portable/SymbolDisplay/SymbolDisplayPropertyStyle.cs +++ b/src/Compilers/Core/Portable/SymbolDisplay/SymbolDisplayPropertyStyle.cs @@ -11,7 +11,7 @@ public enum SymbolDisplayPropertyStyle { /// /// Shows only the names of properties. - /// + /// /// NameOnly = 0, diff --git a/src/Compilers/VisualBasic/Portable/Semantics/Conversions.vb b/src/Compilers/VisualBasic/Portable/Semantics/Conversions.vb index fbffca62ee1a1..54ccdf4317f11 100644 --- a/src/Compilers/VisualBasic/Portable/Semantics/Conversions.vb +++ b/src/Compilers/VisualBasic/Portable/Semantics/Conversions.vb @@ -231,7 +231,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic End Operator ''' - ''' Creates a from this Visual Basic conversion. + ''' Creates a from this Visual Basic conversion. ''' ''' The that represents this conversion. '''