Skip to content

Commit

Permalink
Fix type in volumeunits
Browse files Browse the repository at this point in the history
Related Work Items: #
  • Loading branch information
Peter Morlion committed Jun 25, 2018
1 parent b6436e4 commit dde3398
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RedStar.Amounts.StandardUnits/VolumeUnits.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ public static class VolumeUnits
public static readonly Unit Liter = new Unit("liter", "L", LengthUnits.DeciMeter.Power(3));
public static readonly Unit MilliLiter = new Unit("milliliter", "mL", 0.001 * Liter);
public static readonly Unit CentiLiter = new Unit("centiliter", "cL", 0.01 * Liter);
public static readonly Unit DeciLiter = new Unit("dDeciliter", "dL", 0.1 * Liter);
public static readonly Unit DeciLiter = new Unit("deciliter", "dL", 0.1 * Liter);
public static readonly Unit HectoLiter = new Unit("hectoliter", "hL", 100.0 * Liter);

public static readonly Unit Meter3 = new Unit("meter³", "m³", LengthUnits.Meter.Power(3));
public static readonly Unit Meter3 = new Unit("meter²", "m²", LengthUnits.Meter.Power(3));
}
}

0 comments on commit dde3398

Please sign in to comment.