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 18:52:42 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-08-22 21:21:18 +0300
commit35d8ca894b5a0b3aa8073e71a2c3b63969cd6011 (patch)
treecce52a606cedbc8f8599f8c1ab931fe50bc13177 /netcore/System.Private.CoreLib/shared/System/Globalization/GregorianCalendarHelper.cs
parent55bc2fee8aa1964d338d4ee398a1fa2f7fccd87c (diff)
Fix StyleCop warning SA1005 (single line comment spacing)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'netcore/System.Private.CoreLib/shared/System/Globalization/GregorianCalendarHelper.cs')
-rw-r--r--netcore/System.Private.CoreLib/shared/System/Globalization/GregorianCalendarHelper.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/netcore/System.Private.CoreLib/shared/System/Globalization/GregorianCalendarHelper.cs b/netcore/System.Private.CoreLib/shared/System/Globalization/GregorianCalendarHelper.cs
index 154791282d3..59ea93900ba 100644
--- a/netcore/System.Private.CoreLib/shared/System/Globalization/GregorianCalendarHelper.cs
+++ b/netcore/System.Private.CoreLib/shared/System/Globalization/GregorianCalendarHelper.cs
@@ -306,8 +306,8 @@ namespace System.Globalization
// Will check the if the parameters are valid.
internal static long TimeToTicks(int hour, int minute, int second, int millisecond)
{
- //TimeSpan.TimeToTicks is a family access function which does no error checking, so
- //we need to put some error checking out here.
+ // TimeSpan.TimeToTicks is a family access function which does no error checking, so
+ // we need to put some error checking out here.
if (hour >= 0 && hour < 24 && minute >= 0 && minute < 60 && second >= 0 && second < 60)
{
if (millisecond < 0 || millisecond >= MillisPerSecond)