Update coding style.
[master-thesis.git] / Parasitemia / ParasitemiaUI / Export.fs
index 29fc0a5..52638d3 100644 (file)
@@ -7,7 +7,7 @@ open State
 
 /// <exception cref="System.IOException">If the results cannot be exported</exception>
 let exportResults (state : State) (filePath : string) =
-    use writer = new StreamWriter(new FileStream(filePath, FileMode.Create, FileAccess.Write))
+    use writer = new StreamWriter (new FileStream (filePath, FileMode.Create, FileAccess.Write))
     fprintfn writer "File: %s" state.FilePath
     fprintfn writer "Export date: %O" DateTime.Now