| author | |
| committer | |
| log | 22003e24e9818e1f087da26c80a35b25cb867377 |
| tree | a002dd3fa72a1b38952501f820564436889c0ecb |
| parent | 3ee066e53a6b57446c448abf5f90fef76c873a1d |
1 files changed, 2 insertions(+), 2 deletions(-)
ulid.zig+2-2| ... | ... | @@ -7,9 +7,9 @@ const extras = @import("extras"); |
| 7 | 7 | |
| 8 | 8 | pub const Factory = struct { |
| 9 | 9 | epoch: i64, |
| 10 | rand: std.rand.Random, | |
| 10 | rand: std.Random, | |
| 11 | 11 | |
| 12 | pub fn init(epoch: i64, rand: std.rand.Random) Factory { | |
| 12 | pub fn init(epoch: i64, rand: std.Random) Factory { | |
| 13 | 13 | return Factory{ |
| 14 | 14 | .epoch = epoch, |
| 15 | 15 | .rand = rand, |