Browse Source

End of session check-in.

master
Craig Oates 6 years ago
parent
commit
64a62f8e28
  1. 6
      WetPancake/ProductServices.fs
  2. 4
      WetPancake/Script.fsx
  3. 4
      WetPancakeCLI/ConsoleCommands.cs

6
WetPancake/ProductServices.fs

@ -12,6 +12,12 @@ module Pancake =
open System
open System.IO
(* ===============================================================================================================
YOU ARE UP TO HERE - WEDNESDAY 25 TH JULY 2018
[] DO NOT FORGET TO WRITE THE COMMAND-METHODS IN CONSOLECOMMANDS.CS
[] XML COMMENTS IN THIS FILE
=============================================================================================================== *)
// TODO: Add XML comments to CleanResult function.
let CleanResultAsync noOfSentences text =
async {

4
WetPancake/Script.fsx

@ -191,9 +191,7 @@ ps_result5 |> Async.RunSynchronously
ps_result6 |> Async.RunSynchronously
(* This function is made public so users can clean the text manually.
For the most part, this function should not be called.
*)
For the most part, this function should not be called.*)
let ps_cleanText =
ps_result6 // Change this value for one of the above (ps_result1-6)
|> Async.RunSynchronously

4
WetPancakeCLI/ConsoleCommands.cs

@ -176,5 +176,9 @@ namespace WetPancakeCLI
}
// TODO: Write a "clean-test" command-method so the function can be called manually.
public static string CleanText(int sentences, string text)
{
throw new NotImplementedException();
}
}
}

Loading…
Cancel
Save