Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
magdel committed Feb 16, 2024
1 parent 61a2b59 commit 1ab00fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/com/fasterxml/uuid/Generators.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static TimeBasedEpochGenerator timeBasedEpochGenerator()
* Factory method for constructing UUID generator that generates UUID using
* version 7 (Unix Epoch time+random based), using specified {@link Random}
* number generator.
* Calls withing same millisecond produce very similar values what may be
* Calls within same millisecond produce very similar values what may be
* unsafe in some environments.
* No additional external synchronization is used.
*/
Expand All @@ -150,7 +150,7 @@ public static TimeBasedEpochGenerator timeBasedEpochGenerator(Random random)
* version 7 (Unix Epoch time+random based), using specified {@link Random}
* number generator.
* Timestamp to use is accessed using specified {@link UUIDClock}
* Calls withing same millisecond produce very similar values what may be
* Calls within same millisecond produce very similar values what may be
* unsafe in some environments.
* No additional external synchronization is used.
*
Expand All @@ -166,7 +166,7 @@ public static TimeBasedEpochGenerator timeBasedEpochGenerator(Random random,
* Factory method for constructing UUID generator that generates UUID using
* version 7 (Unix Epoch time+random based), using specified {@link Random}
* number generator.
* Calls withing same millisecond produce as random as possible values.
* Calls within same millisecond produce as random as possible values.
* No additional external synchronization is used.
*/
public static TimeBasedEpochRandomGenerator timeBasedEpochRandomGenerator(Random random)
Expand All @@ -179,7 +179,7 @@ public static TimeBasedEpochRandomGenerator timeBasedEpochRandomGenerator(Random
* version 7 (Unix Epoch time+random based), using specified {@link Random}
* number generato.
* Timestamp to use is accessed using specified {@link UUIDClock}
* Calls withing same millisecond produce as random as possible values.
* Calls within same millisecond produce as random as possible values.
*
* No additional external synchronization is used.
*
Expand Down

0 comments on commit 1ab00fe

Please sign in to comment.