Skip to content

Commit

Permalink
Removed unnecessary string interpolation (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
cardinalip-williamkeller authored Sep 27, 2024
1 parent 20cb6b9 commit 414938c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public void SetCancelledStatus()
}

OrderStatus = OrderStatus.Cancelled;
Description = $"The order was cancelled.";
Description = "The order was cancelled.";
AddDomainEvent(new OrderCancelledDomainEvent(this));
}

Expand Down

0 comments on commit 414938c

Please sign in to comment.