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:
authorKeith Dahlby <dahlbyk@gmail.com>2013-10-24 18:33:26 +0400
committerKeith Dahlby <dahlbyk@gmail.com>2013-11-03 21:09:35 +0400
commit0c4780b5fbe186fcda1337de808a74753dac2041 (patch)
tree02f5035e90589b157881786811bd8cd0dd72e166 /LibGit2Sharp/Blob.cs
parente0277392885545a2ca1cb2667c4ff84243d091fa (diff)
Note that Blob.Size is size of raw content
Diffstat (limited to 'LibGit2Sharp/Blob.cs')
-rw-r--r--LibGit2Sharp/Blob.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Blob.cs b/LibGit2Sharp/Blob.cs
index a264af87..88c5f3b1 100644
--- a/LibGit2Sharp/Blob.cs
+++ b/LibGit2Sharp/Blob.cs
@@ -26,7 +26,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the size in bytes of the contents of a blob
+ /// Gets the size in bytes of the raw content of a blob.
/// </summary>
public virtual int Size { get { return (int)lazySize.Value; } }