Skip to content
Merged
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
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

Expand Down
2 changes: 1 addition & 1 deletion src/PatternKit.Core/Behavioral/Chain/ActionChain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -263,4 +263,4 @@ public Builder ThenContinue(Action<TCtx> action)
/// </code>
/// </example>
public static Builder Create() => new();
}
}
2 changes: 1 addition & 1 deletion src/PatternKit.Core/Behavioral/Chain/ResultChain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,4 +246,4 @@ public Builder Then(Func<TIn, TOut> produce)
/// ]]></code>
/// </example>
public static Builder Create() => new();
}
}
2 changes: 1 addition & 1 deletion src/PatternKit.Core/Behavioral/Command/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -275,4 +275,4 @@ static async ValueTask AwaitUndo(int startIndex, ValueTask pending, TCtx localCt
return new Command<TCtx>(Do, Undo);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,4 @@ public static IEnumerable<IReadOnlyList<T>> Batch<T>(this ReplayableSequence<T>.
if (batch.Count > 0)
yield return batch.ToArray();
}
}
}
2 changes: 1 addition & 1 deletion src/PatternKit.Core/Behavioral/Mediator/Mediator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -410,4 +410,4 @@ internal static class MediatorHelpers
return r;
}
}
}
}
2 changes: 1 addition & 1 deletion src/PatternKit.Core/Behavioral/Memento/Memento.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,4 +271,4 @@ public Builder Capacity(int capacity)
/// <summary>Build the immutable history engine.</summary>
public Memento<TState> Build() => new(_cloner, _applier, _equality, _capacity);
}
}
}
Loading
Loading