Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Rules.Framework.WebUI/Handlers/GetRulesHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected override async Task HandleRequestAsync(HttpRequest httpRequest,

if (!IsValidFilterDates(rulesFilter))
{
await this.WriteResponseAsync(httpResponse, new { Message = "Date begin cannot be greater than after" }, (int)HttpStatusCode.BadRequest)
await this.WriteResponseAsync(httpResponse, new { Message = "Date begin cannot be greater than date end" }, (int)HttpStatusCode.BadRequest)
.ConfigureAwait(false);

return;
Expand Down
2 changes: 1 addition & 1 deletion src/Rules.Framework/Builder/IRuleBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public interface IRuleBuilder<TContentType, TConditionType>
/// Sets the new rule with a value condition with the specified parameters.
/// </summary>
/// <typeparam name="TDataType">The type of the data type.</typeparam>
/// <param name="conditionType">The content type.</param>
/// <param name="conditionType">The condition type.</param>
/// <param name="condOperator">The operator.</param>
/// <param name="operand">The operand.</param>
/// <returns></returns>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Rules.Framework.Providers.InMemory
using Rules.Framework.Core;

/// <summary>
/// The rules data source implementation for usage backed with a in-memory database.
/// The rules data source implementation for usage backed with an in-memory database.
/// </summary>
/// <typeparam name="TContentType">The type of the content type.</typeparam>
/// <typeparam name="TConditionType">The type of the condition type.</typeparam>
Expand Down