Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2019-08-20 04:27:54 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-08-22 21:21:18 +0300
commit8c01fd5189f2675e05720656bd1b391854c958c1 (patch)
tree12710915f8a3ed6e82e0d8e03ff9770af45d6607 /netcore/System.Private.CoreLib/shared/System/Index.cs
parentf83a8da0cef4512a09e1cb8c6a680bbbda6fa108 (diff)
Fix StyleCop warning SA1008 (opening paren spacing)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'netcore/System.Private.CoreLib/shared/System/Index.cs')
-rw-r--r--netcore/System.Private.CoreLib/shared/System/Index.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/netcore/System.Private.CoreLib/shared/System/Index.cs b/netcore/System.Private.CoreLib/shared/System/Index.cs
index 0e4d8514dee..14850c9800c 100644
--- a/netcore/System.Private.CoreLib/shared/System/Index.cs
+++ b/netcore/System.Private.CoreLib/shared/System/Index.cs
@@ -121,7 +121,7 @@ namespace System
/// <summary>Indicates whether the current Index object is equal to another Index object.</summary>
/// <param name="other">An object to compare with this object</param>
- public bool Equals (Index other) => _value == other._value;
+ public bool Equals(Index other) => _value == other._value;
/// <summary>Returns the hash code for this instance.</summary>
public override int GetHashCode() => _value;