Skip to content

Commit

Permalink
change UK to US quarters (#18)
Browse files Browse the repository at this point in the history
* change UK to US quarters

* change UK to US quarters in docs
  • Loading branch information
svycka authored and varna committed Nov 4, 2019
1 parent c199d44 commit 83481c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ I'm not sure how imperial volume units "really" work (in practise), so create an
| longton | Imperial Ton (long) | Pound \* 2240 |
| cwt | American Hundredweight (short) | Pound \* 100 |
| longcwt | Imperial Hundredweight (long) | Pound \* 112 |
| qr | Quarter | Pound \* 28 |
| qr | Quarter | Pound \* 25 |
| st | Stone | Pound \* 14 |
| oz | Ounce | Pound / 16 |
| dr | Drachm | Pound / 256 |
Expand Down
2 changes: 1 addition & 1 deletion src/units/mass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const stone: Unit = {
export const quarter: Unit = {
name: 'quarter',
symbol: 'qr',
ratio: pound.ratio * 28,
ratio: pound.ratio * 25,
type
}

Expand Down

0 comments on commit 83481c4

Please sign in to comment.