Skip to content

Commit f1ef2b5

Browse files
committed
Minor javadoc fix
1 parent 01e0fb4 commit f1ef2b5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/java/com/fasterxml/uuid/Generators.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828

2929
/**
3030
* Root factory class for constructing UUID generators.
31-
*
31+
*
3232
* @author tatu
33-
*
33+
*
3434
* @since 3.0
3535
*/
3636
public class Generators
@@ -133,8 +133,8 @@ public static TimeBasedEpochGenerator timeBasedEpochGenerator()
133133

134134
/**
135135
* Factory method for constructing UUID generator that generates UUID using
136-
* version 7 (time+random based), using specified Ethernet address
137-
* as the location part of UUID.
136+
* version 7 (Unix Epoch time+random based), using specified {@link Random}
137+
* number generator.
138138
* No additional external synchronization is used.
139139
*/
140140
public static TimeBasedEpochGenerator timeBasedEpochGenerator(Random random)
@@ -144,9 +144,9 @@ public static TimeBasedEpochGenerator timeBasedEpochGenerator(Random random)
144144

145145
/**
146146
* Factory method for constructing UUID generator that generates UUID using
147-
* version 7 (time+random based), using specified Ethernet address
148-
* as the location part of UUID.
149-
* Timestamp to use is access using specified {@link UUIDClock}
147+
* version 7 (Unix Epoch time+random based), using specified {@link Random}
148+
* number generato.
149+
* Timestamp to use is accessed using specified {@link UUIDClock}
150150
*
151151
* No additional external synchronization is used.
152152
*
@@ -161,7 +161,7 @@ public static TimeBasedEpochGenerator timeBasedEpochGenerator(Random random,
161161
// // Time+location-based generation
162162

163163
/**
164-
* Factory method for constructing UUID generator that generates UUID using variant 1
164+
* Factory method for constructing UUID generator that generates UUID using version 1
165165
* (time+location based). This method will use the ethernet address of the interface
166166
* that routes to the default gateway, or if that cannot be found, then the address of
167167
* an indeterminately selected non-loopback interface. For most simple and common

0 commit comments

Comments
 (0)