Skip to content

Commit

Permalink
style: 排版 format
Browse files Browse the repository at this point in the history
  • Loading branch information
LilyLin395135 committed Apr 9, 2023
1 parent 29f3f48 commit d858cdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AreaOfShapeCalulations/Shape/Triangle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace AreaOfShapeCalulationsTests
{
public class Triangle:IShape
public class Triangle : IShape
{
private double _baseSide;
private double _height;
Expand All @@ -15,7 +15,7 @@ public Triangle(double baseSide, double height)

public double Area()
{
return (_baseSide*_height)/2;
return (_baseSide * _height) / 2;
}
}
}

0 comments on commit d858cdc

Please sign in to comment.