diff --git a/Source/DeltaPatcher.cs b/Source/DeltaPatcher.cs
index 69ebfec..349bccd 100644
--- a/Source/DeltaPatcher.cs
+++ b/Source/DeltaPatcher.cs
@@ -8,11 +8,11 @@ namespace Promorphosis.Common.Helpers
///
public class DeltaPatcher : DynamicObject
{
- // Has the list of properties that can be patched.
- // Provides us flexibility that certain properties can be skipped.
+ // Has the cached list of properties that can be patched.
private static Dictionary m_patchableProperties = null;
- // Save set values. We will use this to apply patch to the target base item.
+ // Save property values set on this instnace. We will use these to apply
+ // patch to target base item.
Dictionary m_setValues = new Dictionary();
///