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

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/Reference.cs')
-rw-r--r--LibGit2Sharp/Reference.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/LibGit2Sharp/Reference.cs b/LibGit2Sharp/Reference.cs
index d7542714..29742650 100644
--- a/LibGit2Sharp/Reference.cs
+++ b/LibGit2Sharp/Reference.cs
@@ -231,7 +231,9 @@ namespace LibGit2Sharp
get
{
return string.Format(CultureInfo.InvariantCulture,
- "{0} => \"{1}\"", CanonicalName, TargetIdentifier);
+ "{0} => \"{1}\"",
+ CanonicalName,
+ TargetIdentifier);
}
}