From 625d80a9da0b4298a19a7474ace19a1a59994bff Mon Sep 17 00:00:00 2001 From: Aimeast Date: Mon, 4 Jan 2016 23:42:53 +0800 Subject: [PATCH] fix xml document --- LibGit2Sharp/Blob.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGit2Sharp/Blob.cs b/LibGit2Sharp/Blob.cs index 18f384799..9b14cb50f 100644 --- a/LibGit2Sharp/Blob.cs +++ b/LibGit2Sharp/Blob.cs @@ -29,7 +29,7 @@ internal Blob(Repository repo, ObjectId id) /// /// Gets the size in bytes of the raw content of a blob. /// Please note that this would load entire blob content in the memory to compute the Size. - /// In order to read blob size from header, Repository.ObjectMetadata.RetrieveObjectMetadata(Blob.Id).Size + /// In order to read blob size from header, Repository.ObjectDatabase.RetrieveObjectMetadata(Blob.Id).Size /// can be used. /// ///