Update coding style.
[master-thesis.git] / Parasitemia / ParasitemiaCore / UnitsOfMeasure.fs
index 8202b8e..4af1e55 100644 (file)
@@ -9,9 +9,9 @@
 let μmPerInch = 25.4e3<μm/inch>
 let mmPerInch = 25.4<mm/inch>
 
-let μmToInch(x : float<μm>) : float<inch> = x / μmPerInch
-let inchToμm(x : float<inch>) : float<μm> = x * μmPerInch
+let μmToInch (x : float<μm>) : float<inch> = x / μmPerInch
+let inchToμm (x : float<inch>) : float<μm> = x * μmPerInch
 
-let mmToInch(x : float<mm>) : float<inch> = x / mmPerInch
-let inchTomm(x : float<inch>) : float<mm> = x * mmPerInch
+let mmToInch (x : float<mm>) : float<inch> = x / mmPerInch
+let inchTomm (x : float<inch>) : float<mm> = x * mmPerInch