Browse Source

[2357] Wrap comments above 80 char

Mukund Sivaraman 12 years ago
parent
commit
195617a1fd
1 changed files with 10 additions and 9 deletions
  1. 10 9
      src/lib/util/range_utilities.h

+ 10 - 9
src/lib/util/range_utilities.h

@@ -41,16 +41,17 @@ isRangeZero(Iterator begin, Iterator end) {
 
 
 /// @brief Fill in specified range with a random data.
 /// @brief Fill in specified range with a random data.
 ///
 ///
-/// Make sure that random number generator is initialized properly. Otherwise you
+/// Make sure that random number generator is initialized
-/// will get a the same pseudo-random sequence after every start of your process.
+/// properly. Otherwise you will get a the same pseudo-random sequence
-/// Calling srand() is enough. This method uses default rand(), which is usually
+/// after every start of your process.  Calling srand() is enough. This
-/// a LCG pseudo-random number generator, so it is not suitable for security
+/// method uses default rand(), which is usually a LCG pseudo-random
-/// purposes. Please get a decent PRNG implementation, like mersene twister, if
+/// number generator, so it is not suitable for security
-/// you are doing anything related with security.
+/// purposes. Please get a decent PRNG implementation, like mersene
+/// twister, if you are doing anything related with security.
 ///
 ///
-/// PRNG initialization is left out of this function on purpose. It may be
+/// PRNG initialization is left out of this function on purpose. It may
-/// initialized to specific value on purpose, e.g. to repeat exactly the same
+/// be initialized to specific value on purpose, e.g. to repeat exactly
-/// sequence in a test.
+/// the same sequence in a test.
 ///
 ///
 /// @param begin
 /// @param begin
 /// @param end
 /// @param end