Skip to content

Commit

Permalink
Fix: name spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbrauer committed Oct 11, 2017
1 parent 8a61490 commit 5be4fe3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
use UnitConverter\Unit\{ AbstractUnit, UnitInterface };

/**
* Kilometer per hour unit data class.
* Kilometre per hour unit data class.
*
* @version 1.0.0
* @since 1.0.0
* @author Jordan Brauer <[email protected]>
*/
class KilometerPerHour extends SpeedUnit
class KilometrePerHour extends SpeedUnit
{
protected $name = "kilometer per hour";
protected $name = "kilometre per hour";

protected $symbol = "kph";

protected $units = 0.44704;
protected $units = 0.277778;
}

0 comments on commit 5be4fe3

Please sign in to comment.