Skip to content

Commit

Permalink
Fix: drop "US" from short ton class name
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbrauer committed Nov 14, 2017
1 parent da92f8c commit 7a0c5c8
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
namespace UnitConverter\Unit\Mass;

/**
* USShortTon data class.
* Short ton data class. Also known as 'net ton'.
*
* @version 1.0.0
* @version 2.0.0
* @since 0.3.9
* @author Teun Willems
*/
class USShortTon extends MassUnit
class ShortTon extends MassUnit
{
protected function configure (): void
{
$this
->setName("US Short Ton")
->setName("short ton")

->setSymbol("ust")
->setSymbol("ton")

->setUnits(2.204623)
->setUnits(907.1847)
;
}
}

0 comments on commit 7a0c5c8

Please sign in to comment.