Skip to content

Commit 6c004d0

Browse files
committed
cleanup
1 parent 22aa5d3 commit 6c004d0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

GitVersionCore/LambdaEqualityHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace GitVersion
22
{
33
using System;
44

5-
// From the LibGit2Sharp project (ligit2sharp.com)
5+
// From the LibGit2Sharp project (libgit2sharp.com)
66
// MIT License - Copyright (c) 2011-2014 LibGit2Sharp contributors
77
// see https://github.com/libgit2/libgit2sharp/blob/7af5c60f22f9bd6064204f84467cfa62bedd1147/LibGit2Sharp/Core/LambdaEqualityHelper.cs
88

Tests/GitHubFlow/MergedBranchesWithVersionFinderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public void ShouldFindMergeCommit()
1313
{
1414
new MockCommit(),
1515
new MockCommit(),
16-
new MockMergeCommit()
16+
new MockMergeCommit
1717
{
1818
MessageEx = "Merge branch 'release-2.0.0'"
1919
}

Tests/Helpers/LibGit2SharpExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public static class LibGit2SharpExtensions
44
{
55
public static void ForceCheckout(this Branch branch)
66
{
7-
branch.Checkout(new CheckoutOptions()
7+
branch.Checkout(new CheckoutOptions
88
{
99
CheckoutModifiers = CheckoutModifiers.Force
1010
});

Tests/LambdaEqualityHelperFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
public class LambdaEqualityHelperFixture
55
{
6-
// From the LibGit2Sharp project (ligit2sharp.com)
6+
// From the LibGit2Sharp project (libgit2sharp.com)
77
// MIT License - Copyright (c) 2011-2014 LibGit2Sharp contributors
88
// see https://github.com/libgit2/libgit2sharp/blob/7af5c60f22f9bd6064204f84467cfa62bedd1147/LibGit2Sharp.Tests/EqualityFixture.cs
99

0 commit comments

Comments
 (0)