7f169e926d8b default tip
Fix doc typo
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Mon, 10 Oct 2016 21:49:58 +0000 |
parents | f4f93b7297ea |
children | (none) |
branches/tags | default tip |
files | docs/usage.markdown |
Changes
--- a/docs/usage.markdown Mon Mar 28 17:55:56 2016 +0000 +++ b/docs/usage.markdown Mon Oct 10 21:49:58 2016 +0000 @@ -97,7 +97,7 @@ :::clojure (rand-gaussian) (rand-gaussian mean standard-deviation) - (rand-gaussian mean standard-deviation upper-bound lower-bound) + (rand-gaussian mean standard-deviation lower-bound upper-bound) Return a random float taken from a Gaussian distribution with the given mean and standard deviation. @@ -118,12 +118,13 @@ (let [x (rand-gaussian 100 20 0 graph-width) y (rand-gaussian 200 40)] ...) + ### rand-gaussian-int :::clojure (rand-gaussian) (rand-gaussian mean standard-deviation) - (rand-gaussian mean standard-deviation upper-bound lower-bound) + (rand-gaussian mean standard-deviation lower-bound upper-bound) Return a random int taken from a Gaussian distribution with the given mean and standard deviation.