From 2bbd2e0d8050e8bba5e546b241d9f9304c1fbce4 Mon Sep 17 00:00:00 2001 From: kuepper Date: Tue, 21 Aug 2007 13:58:53 +0000 Subject: [PATCH] Fix typos --- eo/src/utils/eoRNG.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eo/src/utils/eoRNG.h b/eo/src/utils/eoRNG.h index cdd99e34..69a6c809 100644 --- a/eo/src/utils/eoRNG.h +++ b/eo/src/utils/eoRNG.h @@ -161,7 +161,7 @@ public : initialize(s); } - /** Radnom number from unifom distribution + /** Random number from unifom distribution @param m Define interval for random number to [0, m) @return random number in the range [0, m) @@ -171,7 +171,7 @@ public : return m * double(rand()) / double(1.0 + rand_max()); } - /** Radnom integer number from unifom distribution + /** Random integer number from unifom distribution @param m Define interval for random number to [0, m) @return random integer in the range [0, m)