Skip to content

Commit

Permalink
Merge branch 'master' into mrMask
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard authored Oct 6, 2020
2 parents 051d143 + 224f321 commit 3e9b818
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: master

env:
NUGETTOKEN: ${{ secrets.NUGETTOKEN }}
NUGETTOKEN: ${{ secrets.NUGET_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SCRIPTS_BASE_URL: https://raw.githubusercontent.com/linksplatform/Scripts/master/MultiProjectRepository

Expand Down
4 changes: 2 additions & 2 deletions csharp/Platform.Numbers.Tests/Platform.Numbers.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.6.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.2" PrivateAssets="All" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" PrivateAssets="All" />
<PackageReference Include="coverlet.collector" Version="1.3.0" PrivateAssets="All" />
</ItemGroup>

Expand Down
10 changes: 5 additions & 5 deletions csharp/Platform.Numbers/Bit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@ public static int GetLowestPosition(ulong value)
/// </typeparam>
/// <param name="x">
/// <para>The number on which the left bitwise shift operation will be performed.</para>
/// <para>Число над которым будет производиться операция пиботового смещения влево.<para>
/// <para>Число над которым будет производиться операция пиботового смещения влево.</para>
/// </param>
/// <param name="y">
/// <para>The number of bits to shift.</para>
/// <para>Количество бит на которые выполнить смещение.<para>
/// <para>Количество бит на которые выполнить смещение.</para>
/// </param>
/// <returns>
/// <para>The value with discarded high-order bits that are outside the range of the number type and set low-order empty bit positions to zero.</para>
Expand All @@ -160,15 +160,15 @@ public static int GetLowestPosition(ulong value)
/// </typeparam>
/// <param name="x">
/// <para>The number on which the right bitwise shift operation will be performed.</para>
/// <para>Число над которым будет производиться операция побитового смещения вправо.<para>
/// <para>Число над которым будет производиться операция побитового смещения вправо.</para>
/// </param>
/// <param name="y">
/// <para>The number of bits to shift.</para>
/// <para>Количество бит на которые выполнить смещение.<para>
/// <para>Количество бит на которые выполнить смещение.</para>
/// </param>
/// <returns>
/// <para>The value with discarded low-order bits.</para>
/// <para>Значение с отброшенными младшими битами</para>
/// <para>Значение с отброшенными младшими битами.</para>
/// </returns>
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static T ShiftRight<T>(T x, int y) => Bit<T>.ShiftRight(x, y);
Expand Down

0 comments on commit 3e9b818

Please sign in to comment.