Orchard.Framework/Caching: Fixing typo in a comment in Cache.cs

This commit is contained in:
Lombiq
2014-05-21 18:48:20 +02:00
committed by Benedek Farkas
parent 6e49ad2ce2
commit a1039f5609

View File

@@ -17,7 +17,7 @@ namespace Orchard.Caching {
var entry = _entries.AddOrUpdate(key,
// "Add" lambda
k => AddEntry(k, acquire),
// "Update" lamdba
// "Update" lambda
(k, currentEntry) => UpdateEntry(currentEntry, k, acquire));
return entry.Result;