summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Reflection/ReflectedProperty.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Framework/Reflection/ReflectedProperty.cs')
-rw-r--r--src/SMAPI/Framework/Reflection/ReflectedProperty.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/SMAPI/Framework/Reflection/ReflectedProperty.cs b/src/SMAPI/Framework/Reflection/ReflectedProperty.cs
index 8a10ff9a..42d7bb59 100644
--- a/src/SMAPI/Framework/Reflection/ReflectedProperty.cs
+++ b/src/SMAPI/Framework/Reflection/ReflectedProperty.cs
@@ -23,7 +23,7 @@ namespace StardewModdingAPI.Framework.Reflection
/*********
** Accessors
*********/
- /// <summary>The reflection metadata.</summary>
+ /// <inheritdoc />
public PropertyInfo PropertyInfo { get; }
@@ -61,7 +61,7 @@ namespace StardewModdingAPI.Framework.Reflection
this.SetMethod = (Action<TValue>)Delegate.CreateDelegate(typeof(Action<TValue>), obj, this.PropertyInfo.SetMethod);
}
- /// <summary>Get the property value.</summary>
+ /// <inheritdoc />
public TValue GetValue()
{
if (this.GetMethod == null)
@@ -81,8 +81,7 @@ namespace StardewModdingAPI.Framework.Reflection
}
}
- /// <summary>Set the property value.</summary>
- //// <param name="value">The value to set.</param>
+ /// <inheritdoc />
public void SetValue(TValue value)
{
if (this.SetMethod == null)