Skip to content

Commit

Permalink
Update ParametersBase.cs
Browse files Browse the repository at this point in the history
I have changed parameter to parameters
  • Loading branch information
d3fkn1ght committed Apr 24, 2020
1 parent dfd9693 commit e91dc8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Prism.Core/Common/ParametersBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ public object this[string key]
_entries.Select(x => x.Key);

/// <summary>
/// Adds the key and value to the parameter collection
/// Adds the key and value to the parameters collection
/// </summary>
/// <param name="key">The key to reference this value in the parameter collection</param>
/// <param name="key">The key to reference this value in the parameters collection</param>
/// <param name="value">The value of the parameter to store</param>
public void Add(string key, object value) =>
_entries.Add(new KeyValuePair<string, object>(key, value));
Expand Down

0 comments on commit e91dc8a

Please sign in to comment.