Skip to content

Commit

Permalink
Remove periods on doc comments.
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Lamb <4955475+kinyoklion@users.noreply.github.com>
  • Loading branch information
kinyoklion committed Sep 13, 2022
1 parent 5771f01 commit 294bb70
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions src/OpenFeature.SDK/Model/EvaluationContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@ public class EvaluationContext
/// Gets the Value at the specified key
/// </summary>
/// <param name="key">The key of the value to be retrieved</param>
/// <returns>The <see cref="Value"/> associated with the key.</returns>
/// <returns>The <see cref="Value"/> associated with the key</returns>
/// <exception cref="KeyNotFoundException">
/// Thrown when the context does not contain the specified key.
/// Thrown when the context does not contain the specified key
/// </exception>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
public Value GetValue(string key) => this._structure.GetValue(key);

/// <summary>
/// Bool indicating if the specified key exists in the evaluation context
/// </summary>
/// <param name="key">The key of the value to be checked</param>
/// <returns><see cref="bool" />indicating the presence of the key.</returns>
/// <returns><see cref="bool" />indicating the presence of the key</returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
public bool ContainsKey(string key) => this._structure.ContainsKey(key);

Expand All @@ -40,18 +40,18 @@ public class EvaluationContext
/// </summary>
/// <param name="key">The key of the value to be removed</param>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
public void Remove(string key) => this._structure.Remove(key);

/// <summary>
/// Gets the value associated with the specified key
/// </summary>
/// <param name="value">The <see cref="Value"/> or <see langword="null" /> if the key was not present.</param>
/// <param name="value">The <see cref="Value"/> or <see langword="null" /> if the key was not present</param>
/// <param name="key">The key of the value to be retrieved</param>
/// <returns><see cref="bool" />indicating the presence of the key.</returns>
/// <returns><see cref="bool" />indicating the presence of the key</returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
public bool TryGetValue(string key, out Value value) => this._structure.TryGetValue(key, out value);

Expand All @@ -71,10 +71,10 @@ public IDictionary<string, Value> AsDictionary()
/// <param name="value">The value to be added</param>
/// <returns>This <see cref="EvaluationContext"/></returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
/// <exception cref="ArgumentException">
/// Thrown when an element with the same key is already contained in the context.
/// Thrown when an element with the same key is already contained in the context
/// </exception>
public EvaluationContext Add(string key, bool value)
{
Expand All @@ -89,10 +89,10 @@ public EvaluationContext Add(string key, bool value)
/// <param name="value">The value to be added</param>
/// <returns>This <see cref="EvaluationContext"/></returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
/// <exception cref="ArgumentException">
/// Thrown when an element with the same key is already contained in the context.
/// Thrown when an element with the same key is already contained in the context
/// </exception>
public EvaluationContext Add(string key, string value)
{
Expand All @@ -107,10 +107,10 @@ public EvaluationContext Add(string key, string value)
/// <param name="value">The value to be added</param>
/// <returns>This <see cref="EvaluationContext"/></returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
/// <exception cref="ArgumentException">
/// Thrown when an element with the same key is already contained in the context.
/// Thrown when an element with the same key is already contained in the context
/// </exception>
public EvaluationContext Add(string key, int value)
{
Expand All @@ -125,10 +125,10 @@ public EvaluationContext Add(string key, int value)
/// <param name="value">The value to be added</param>
/// <returns>This <see cref="EvaluationContext"/></returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
/// <exception cref="ArgumentException">
/// Thrown when an element with the same key is already contained in the context.
/// Thrown when an element with the same key is already contained in the context
/// </exception>
public EvaluationContext Add(string key, double value)
{
Expand All @@ -143,10 +143,10 @@ public EvaluationContext Add(string key, double value)
/// <param name="value">The value to be added</param>
/// <returns>This <see cref="EvaluationContext"/></returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
/// <exception cref="ArgumentException">
/// Thrown when an element with the same key is already contained in the context.
/// Thrown when an element with the same key is already contained in the context
/// </exception>
public EvaluationContext Add(string key, DateTime value)
{
Expand All @@ -161,10 +161,10 @@ public EvaluationContext Add(string key, DateTime value)
/// <param name="value">The value to be added</param>
/// <returns>This <see cref="EvaluationContext"/></returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
/// <exception cref="ArgumentException">
/// Thrown when an element with the same key is already contained in the context.
/// Thrown when an element with the same key is already contained in the context
/// </exception>
public EvaluationContext Add(string key, Structure value)
{
Expand All @@ -179,10 +179,10 @@ public EvaluationContext Add(string key, Structure value)
/// <param name="value">The value to be added</param>
/// <returns>This <see cref="EvaluationContext"/></returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
/// <exception cref="ArgumentException">
/// Thrown when an element with the same key is already contained in the context.
/// Thrown when an element with the same key is already contained in the context
/// </exception>
public EvaluationContext Add(string key, List<Value> value)
{
Expand All @@ -197,10 +197,10 @@ public EvaluationContext Add(string key, List<Value> value)
/// <param name="value">The value to be added</param>
/// <returns>This <see cref="EvaluationContext"/></returns>
/// <exception cref="ArgumentNullException">
/// Thrown when the key is <see langword="null" />.
/// Thrown when the key is <see langword="null" />
/// </exception>
/// <exception cref="ArgumentException">
/// Thrown when an element with the same key is already contained in the context.
/// Thrown when an element with the same key is already contained in the context
/// </exception>
public EvaluationContext Add(string key, Value value)
{
Expand Down

0 comments on commit 294bb70

Please sign in to comment.