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:
authornulltoken <emeric.fermas@gmail.com>2011-09-15 16:24:07 +0400
committernulltoken <emeric.fermas@gmail.com>2011-09-21 21:32:26 +0400
commitdf04d9d21aad672241f4c995a217fc1f473ab818 (patch)
tree525a678107a491d1c767bc23658ca91b1c149968 /LibGit2Sharp/SymbolicReference.cs
parent75ae7f95d566368c7d4c8cb0264c1e403fcabb90 (diff)
Enforce code style
Diffstat (limited to 'LibGit2Sharp/SymbolicReference.cs')
-rw-r--r--LibGit2Sharp/SymbolicReference.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp/SymbolicReference.cs b/LibGit2Sharp/SymbolicReference.cs
index e1a8290a..c142c82a 100644
--- a/LibGit2Sharp/SymbolicReference.cs
+++ b/LibGit2Sharp/SymbolicReference.cs
@@ -13,10 +13,10 @@
/// <summary>
/// Recursively peels the target of the reference until a direct reference is encountered.
/// </summary>
- /// <returns>The <see cref="DirectReference"/> this <see cref="SymbolicReference"/> points to.</returns>
+ /// <returns>The <see cref = "DirectReference" /> this <see cref = "SymbolicReference" /> points to.</returns>
public override DirectReference ResolveToDirectReference()
{
return (Target == null) ? null : Target.ResolveToDirectReference();
}
}
-} \ No newline at end of file
+}