summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordaniel0916 <theschokolps@gmail.com>2014-04-07 20:41:47 +0200
committerdaniel0916 <theschokolps@gmail.com>2014-04-07 20:41:47 +0200
commit427924fbb0dd4d6bae909095d0c3ae7dac0da36b (patch)
treec17185dff6155417b74ec33dcd3a5f22e09818da
parentFixed Errors (diff)
downloadcuberite-427924fbb0dd4d6bae909095d0c3ae7dac0da36b.tar
cuberite-427924fbb0dd4d6bae909095d0c3ae7dac0da36b.tar.gz
cuberite-427924fbb0dd4d6bae909095d0c3ae7dac0da36b.tar.bz2
cuberite-427924fbb0dd4d6bae909095d0c3ae7dac0da36b.tar.lz
cuberite-427924fbb0dd4d6bae909095d0c3ae7dac0da36b.tar.xz
cuberite-427924fbb0dd4d6bae909095d0c3ae7dac0da36b.tar.zst
cuberite-427924fbb0dd4d6bae909095d0c3ae7dac0da36b.zip
-rw-r--r--src/FastRandom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FastRandom.h b/src/FastRandom.h
index 1c20fa39f..567198a31 100644
--- a/src/FastRandom.h
+++ b/src/FastRandom.h
@@ -44,7 +44,7 @@ public:
/// Returns a random float in the range [0 .. a_Range]; a_Range must be less than 1M; a_Salt is additional source of randomness
float NextFloat(float a_Range, int a_Salt);
- /// Returns a random int in the range [a_Begin .. a_End]
+ /** Returns a random int in the range [a_Begin .. a_End] */
int GenerateRandomInteger(int a_Begin, int a_End);
protected: