F# debug suggestion not correct

In the F# suggestion you get a suggestion how to debug the application. It reads as:
(* To debug: Console.Error.WriteLine(“Debug message”) *)

However. The correct way is:
(* To debug: eprintfn “Debug message” *)

2 Likes