Skip to content

Commit

Permalink
docs: ok result
Browse files Browse the repository at this point in the history
  • Loading branch information
draekien committed May 5, 2024
1 parent d8beb18 commit cac2b2b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/FluentUtils.Monad/OkResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
/// <typeparam name="T">The value type</typeparam>
public sealed record OkResult<T> : IResult<T> where T : notnull
{
/// <summary>
/// Do not use directly
/// </summary>
/// <param name="value"></param>
internal OkResult(T value)
{
Value = value;
Expand Down

0 comments on commit cac2b2b

Please sign in to comment.