diff --git a/dotnet/src/Plugins/Plugins.Core/MathPlugin.cs b/dotnet/src/Plugins/Plugins.Core/MathPlugin.cs index 822a106e7843..f76390c22e20 100644 --- a/dotnet/src/Plugins/Plugins.Core/MathPlugin.cs +++ b/dotnet/src/Plugins/Plugins.Core/MathPlugin.cs @@ -10,9 +10,9 @@ namespace Microsoft.SemanticKernel.Plugins.Core; public sealed class MathPlugin { /// - /// Returns the Addition result of initial and amount values provided. + /// Returns the addition result of initial and amount values provided. /// - /// Initial value to which to add the specified amount + /// Initial value to which to add the specified amount. /// The amount to add as a string. /// The resulting sum as a string. [KernelFunction, Description("Adds an amount to a value")] @@ -23,9 +23,9 @@ public sealed class MathPlugin value + amount; /// - /// Returns the Sum of two provided numbers. + /// Returns the subtraction result of initial and amount values provided. /// - /// Initial value from which to subtract the specified amount + /// Initial value from which to subtract the specified amount. /// The amount to subtract as a string. /// The resulting subtraction as a string. [KernelFunction, Description("Subtracts an amount from a value")]