Skip to content

Commit

Permalink
Fix: spelling of millilitre unit class
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbrauer committed Nov 14, 2017
1 parent 013cbff commit 6b4ee9c
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,22 @@
namespace UnitConverter\Unit\Volume;

/**
* Mililitre unit data class.
* Millilitre unit data class.
*
* @version 1.0.0
* @since 0.0.1
* @author Jordan Brauer <[email protected]>
*/
class Mililitre extends VolumeUnit
class Millilitre extends VolumeUnit
{
protected function configure (): void
{
$this
->setName("mililitre")
->setName("millilitre")

->setSymbol("ml")
->setSymbol("mL")

->setScientificSymbol("mL")

->setUnits(0.001)
;
Expand Down

0 comments on commit 6b4ee9c

Please sign in to comment.