From 97fd2e902ffa81f1fb9111b8f0cf0cae439a839f Mon Sep 17 00:00:00 2001 From: DoctorKrolic Date: Tue, 12 Mar 2024 23:04:10 +0300 Subject: [PATCH] Fix doc comment --- src/Compilers/Core/Portable/Symbols/ISymbol.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Compilers/Core/Portable/Symbols/ISymbol.cs b/src/Compilers/Core/Portable/Symbols/ISymbol.cs index 285f1ac0efc40..1c461b0825233 100644 --- a/src/Compilers/Core/Portable/Symbols/ISymbol.cs +++ b/src/Compilers/Core/Portable/Symbols/ISymbol.cs @@ -3,7 +3,6 @@ // See the LICENSE file in the project root for more information. using System; -using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics.CodeAnalysis; using System.Globalization; @@ -191,7 +190,7 @@ public interface ISymbol : IEquatable ImmutableArray DeclaringSyntaxReferences { get; } /// - /// Gets the attributes for the symbol. Returns an empty + /// Gets the attributes for the symbol. Returns an empty /// if there are no attributes. /// ImmutableArray GetAttributes();