mirror of
https://github.com/SimpleMobileTools/Simple-Calculator.git
synced 2025-02-16 11:31:01 +01:00
Update VolumeConverter.kt
Deciliter and Centiliter were mixed up. See https://en.wikipedia.org/wiki/Litre#SI_prefixes_applied_to_the_litre
This commit is contained in:
parent
7ab1a8da5f
commit
c2c4c53bbd
@ -43,20 +43,20 @@ object VolumeConverter : Converter {
|
||||
key = "Liter"
|
||||
)
|
||||
|
||||
data object Centiliter : Unit(
|
||||
nameResId = R.string.unit_volume_centiliter,
|
||||
symbolResId = R.string.unit_volume_centiliter_symbol,
|
||||
factor = 0.0001,
|
||||
key = "Centiliter"
|
||||
)
|
||||
|
||||
data object Deciliter : Unit(
|
||||
nameResId = R.string.unit_volume_deciliter,
|
||||
symbolResId = R.string.unit_volume_deciliter_symbol,
|
||||
factor = 0.00001,
|
||||
factor = 0.0001,
|
||||
key = "Deciliter"
|
||||
)
|
||||
|
||||
data object Centiliter : Unit(
|
||||
nameResId = R.string.unit_volume_centiliter,
|
||||
symbolResId = R.string.unit_volume_centiliter_symbol,
|
||||
factor = 0.00001,
|
||||
key = "Centiliter"
|
||||
)
|
||||
|
||||
data object Milliliter : Unit(
|
||||
nameResId = R.string.unit_volume_milliliter,
|
||||
symbolResId = R.string.unit_volume_milliliter_symbol,
|
||||
|
Loading…
x
Reference in New Issue
Block a user