Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
andreise committed Feb 11, 2024
1 parent aad2790 commit 3564f02
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/core-taggeds-failure/Failure/Failure.T/T.Deconstruct.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ namespace System;

partial struct Failure<TFailureCode>
{
public void Deconstruct(out TFailureCode failureCode, out string failureMessage)
public void Deconstruct(
out TFailureCode failureCode, out string failureMessage)
{
failureCode = FailureCode;
failureMessage = FailureMessage;
}

public void Deconstruct(out TFailureCode failureCode, out string failureMessage, out System.Exception? sourceException)
public void Deconstruct(
out TFailureCode failureCode, out string failureMessage, out System.Exception? sourceException)
{
failureCode = FailureCode;
failureMessage = FailureMessage;
Expand Down

0 comments on commit 3564f02

Please sign in to comment.