From d85afb42f5821416438a82568e4d822415039d87 Mon Sep 17 00:00:00 2001 From: Yuri Rubinsky Date: Thu, 15 Dec 2022 15:04:03 +0300 Subject: [PATCH] Remove incorrect sentence in tutorial of random_number_generation --- tutorials/math/random_number_generation.rst | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tutorials/math/random_number_generation.rst b/tutorials/math/random_number_generation.rst index 55250d248..eae99b2e5 100644 --- a/tutorials/math/random_number_generation.rst +++ b/tutorials/math/random_number_generation.rst @@ -25,11 +25,8 @@ using the :ref:`class_RandomNumberGenerator` class. Global scope methods are easier to set up, but they don't offer as much control. -RandomNumberGenerator requires more code to use, but exposes many methods not -found in global scope such as :ref:`randi_range() -` and :ref:`randfn() -`. On top of that, it allows creating -multiple instances each with their own seed. +RandomNumberGenerator requires more code to use, but allows creating +multiple instances, each with their own seed and state. This tutorial uses global scope methods, except when the method only exists in the RandomNumberGenerator class.