diff options
author | JeremyRand <biolizard89@gmail.com> | 2019-09-20 07:58:30 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-07-13 10:42:46 -0400 |
commit | 0be80fb65003df21bece5d56e298b7fbf277b429 (patch) | |
tree | 4c081a3eb5ba3013161f372fa17956bc41211065 /src/lib/math | |
parent | 20e278735267fa7bbd0475e4866c488581c9ea70 (diff) | |
download | tor-0be80fb65003df21bece5d56e298b7fbf277b429.tar.gz tor-0be80fb65003df21bece5d56e298b7fbf277b429.zip |
Bug 31812: Change http URL's to https
Diffstat (limited to 'src/lib/math')
-rw-r--r-- | src/lib/math/laplace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/laplace.c b/src/lib/math/laplace.c index 5c1d686a9c..a0e67384e6 100644 --- a/src/lib/math/laplace.c +++ b/src/lib/math/laplace.c @@ -29,7 +29,7 @@ sample_laplace_distribution(double mu, double b, double p) tor_assert(p >= 0.0 && p < 1.0); /* This is the "inverse cumulative distribution function" from: - * http://en.wikipedia.org/wiki/Laplace_distribution */ + * https://en.wikipedia.org/wiki/Laplace_distribution */ if (p <= 0.0) { /* Avoid taking log(0.0) == -INFINITY, as some processors or compiler * options can cause the program to trap. */ |