Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Compilers/CSharp/Portable/Symbols/MethodSymbol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public abstract MethodKind MethodKind
}

/// <summary>
/// Returns the arity of this method, or the number of type parameters it takes.
/// Returns the arity of this method. Arity is the number of type parameters a method declares.
/// A non-generic method has zero arity.
/// </summary>
public abstract int Arity { get; }
Expand Down
2 changes: 1 addition & 1 deletion src/Compilers/Core/Portable/Symbols/IMethodSymbol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public interface IMethodSymbol : ISymbol
MethodKind MethodKind { get; }

/// <summary>
/// Returns the arity of this method, or the number of type parameters it takes.
/// Returns the arity of this method. Arity is the number of type parameters a method declares.
/// A non-generic method has zero arity.
/// </summary>
int Arity { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic.Symbols
End Property

''' <summary>
''' Returns the arity of this method, or the number of type parameters it takes.
''' Returns the arity of this method. Arity is the number of type parameters a method declares.
''' A non-generic method has zero arity.
''' </summary>
Public MustOverride ReadOnly Property Arity As Integer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic.Symbols
End Sub

''' <summary>
''' Returns the arity of this method, or the number of type parameters it takes.
''' Returns the arity of this method. Arity is the number of type parameters a method declares.
''' A non-generic method has zero arity.
''' </summary>
Public Overrides ReadOnly Property Arity As Integer
Expand Down
Loading