diff --git a/README.md b/README.md index fcf27e5..ff2c494 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/src/units/mass.ts b/src/units/mass.ts index 9853381..7355b1d 100644 --- a/src/units/mass.ts +++ b/src/units/mass.ts @@ -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 }