]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix; cl-random is only pseudo-random
authorStefan Kangas <stefan@marxist.se>
Fri, 24 Sep 2021 22:05:55 +0000 (00:05 +0200)
committerStefan Kangas <stefan@marxist.se>
Fri, 24 Sep 2021 22:05:55 +0000 (00:05 +0200)
* lisp/emacs-lisp/cl-extra.el (cl-random): Doc fix; say it's only
pseudo-random.

lisp/emacs-lisp/cl-extra.el

index 3840d13ecffb6e6e11975851636d4fd481d5eac4..0ed754750971b4c65de2104a2b3ee9d922058b06 100644 (file)
@@ -455,7 +455,7 @@ as an integer unless JUNK-ALLOWED is non-nil."
 
 ;;;###autoload
 (defun cl-random (lim &optional state)
-  "Return a random nonnegative number less than LIM, an integer or float.
+  "Return a pseudo-random nonnegative number less than LIM, an integer or float.
 Optional second arg STATE is a random-state object."
   (or state (setq state cl--random-state))
   ;; Inspired by "ran3" from Numerical Recipes.  Additive congruential method.