Skip to content

SR-11766: Fix coefficients for UnitVolume #2561

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 7, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Foundation/Unit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2030,8 +2030,8 @@ public final class UnitVolume : Dimension {
static let cubicKilometers = 1e12
static let cubicMeters = 1000.0
static let cubicDecimeters = 1.0
static let cubicCentimeters = 0.01
static let cubicMillimeters = 0.001
static let cubicCentimeters = 1e-3
static let cubicMillimeters = 1e-6
static let cubicInches = 0.0163871
static let cubicFeet = 28.3168
static let cubicYards = 764.555
Expand Down