Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
delatrie committed Nov 13, 2023
1 parent e48d7d6 commit e80ac20
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Allure.Net.Commons/AllureApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ string diffPng
/// <param name="name">The name of a new or existing parameter.</param>
/// <param name="value">
/// The value of the new parameter, or the new value of the existing
/// parameter. The value is converted to the string using JSON
/// parameter. The value is converted to a string using JSON
/// serialization. Use <see cref="SetTestParameter(Parameter)"/> or add a
/// suitable type formatter to customize the serialization.
/// </param>
Expand All @@ -943,7 +943,7 @@ public static void SetTestParameter(string name, object? value) =>
/// <param name="name">The name of the new or existing parameter.</param>
/// <param name="value">
/// The value of the new parameter, or the new value of the existing
/// parameter. The value is converted to the string using JSON
/// parameter. The value is converted to a string using JSON
/// serialization. Use <see cref="SetTestParameter(Parameter)"/> or add a
/// suitable type formatter to customize the serialization.
/// </param>
Expand Down Expand Up @@ -972,7 +972,7 @@ public static void SetTestParameter(string name, object? value, ParameterMode mo
/// <param name="name">The name of the new or existing parameter.</param>
/// <param name="value">
/// The value of the new parameter, or the new value of the existing
/// parameter. The value is converted to the string using JSON
/// parameter. The value is converted to a string using JSON
/// serialization. Use <see cref="SetTestParameter(Parameter)"/> or add a
/// suitable type formatter to customize the serialization.
/// </param>
Expand Down Expand Up @@ -1001,7 +1001,7 @@ public static void SetTestParameter(string name, object? value, bool excluded) =
/// <param name="name">The name of the new or existing parameter.</param>
/// <param name="value">
/// The value of the new parameter, or the new value of the existing
/// parameter. The value is converted to the string using JSON
/// parameter. The value is converted to a string using JSON
/// serialization. Use <see cref="SetTestParameter(Parameter)"/> or add a
/// suitable type formatter to customize the serialization.
/// </param>
Expand Down Expand Up @@ -1047,8 +1047,8 @@ public static void SetTestParameter(Parameter parameter)
}

/// <summary>
/// Updates the existing test parameter. Throws, if the paramter doesn't
/// exist in the test context.
/// Updates the existing test parameter. Doesn't change the parameter's
/// value. Throws, if the paramter doesn't exist in the test context.
/// </summary>
/// <remarks>Requires the test context to be active.</remarks>
/// <param name="name">The name of the parameter to update.</param>
Expand Down
2 changes: 1 addition & 1 deletion Allure.Net.Commons/AllureLifecycle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class AllureLifecycle

/// <summary>
/// The list of the currently registered formatters used by Allure to
/// convert test and step arguments to the strings.
/// convert test and step arguments to strings.
/// </summary>
public IReadOnlyDictionary<Type, ITypeFormatter> TypeFormatters =>
new ReadOnlyDictionary<Type, ITypeFormatter>(typeFormatters);
Expand Down

0 comments on commit e80ac20

Please sign in to comment.