Procházet zdrojové kódy

Fix C# code sample in Random number generation

Hugo Locurcio před 3 roky
rodič
revize
89e566ec67
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      tutorials/math/random_number_generation.rst

+ 1 - 1
tutorials/math/random_number_generation.rst

@@ -174,7 +174,7 @@ and ``to``, and returns a random integer between ``from`` and ``to``:
 
  .. code-tab:: csharp
 
-    # Prints a random integer number between -10 and 10.
+    // Prints a random integer number between -10 and 10.
     random.Randomize();
     GD.Print(random.RandiRange(-10, 10));