[Git][cmucl/cmucl][master] Remove extra closing paren
Raymond Toy pushed to branch master at cmucl / cmucl Commits: 0c427fc1 by Raymond Toy at 2018-07-27T17:51:02Z Remove extra closing paren - - - - - 1 changed file: - src/code/rand-xoroshiro.lisp Changes: ===================================== src/code/rand-xoroshiro.lisp ===================================== --- a/src/code/rand-xoroshiro.lisp +++ b/src/code/rand-xoroshiro.lisp @@ -492,7 +492,7 @@ (error 'simple-type-error :expected-type '(or (integer 1) (float (0.0))) :datum arg :format-control _"Argument is not a positive integer or a positive float: ~S") - :format-arguments (list arg))))) + :format-arguments (list arg)))) ;; Jump function for the generator. See the jump function in ;; http://xoroshiro.di.unimi.it/xoroshiro128plus.c View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/0c427fc137491327a31e997b71... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/0c427fc137491327a31e997b71... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy