MathF PR feedback
authorViktor Hofer <viktor.hofer@microsoft.com>
Mon, 18 Sep 2023 12:19:24 +0000 (14:19 +0200)
committerViktor Hofer <viktor.hofer@microsoft.com>
Mon, 18 Sep 2023 14:24:51 +0000 (16:24 +0200)
src/libraries/Microsoft.Bcl.Numerics/src/PACKAGE.md

index 87db6a1..620514e 100644 (file)
@@ -13,17 +13,12 @@ As of .NET Core 2.0 and .NET Standard 2.1, the C# language has support for math
 
 ```C#
 using System;
-using System.MathF.
 
 internal static class Program
 {
     private static async Task Main()
-    {
-        Console.WriteLine("Starting...");
-        
+    {       
         Console.WriteLine(MathF.Max(1f, 5f)); // returns 5f
-
-        Console.WriteLine("Finished!");
     }
 }
 ```