Fix C# code sample in Random number generation

This commit is contained in:
Hugo Locurcio
2021-10-20 11:00:06 +02:00
parent 16a4217e11
commit eb98244d1c
+1 -1
View File
@@ -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));