From 003dc57994d03dfbd275eaafa87e2624237944bd Mon Sep 17 00:00:00 2001 From: Han Woo Date: Fri, 20 Oct 2023 00:58:08 +0800 Subject: [PATCH] doc: fix links to timestamp module Signed-off-by: Han Woo --- src/v6.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/v6.rs b/src/v6.rs index 7961ea1c..09c156fb 100644 --- a/src/v6.rs +++ b/src/v6.rs @@ -86,9 +86,9 @@ impl Uuid { /// /// * [Version 6 UUIDs in Draft RFC: New UUID Formats, Version 4](https://datatracker.ietf.org/doc/html/draft-peabody-dispatch-new-uuid-format-04#section-5.1) /// - /// [`Timestamp`]: v1/struct.Timestamp.html - /// [`ClockSequence`]: v1/trait.ClockSequence.html - /// [`Context`]: v1/struct.Context.html + /// [`Timestamp`]: timestamp/struct.Timestamp.html + /// [`ClockSequence`]: timestamp/trait.ClockSequence.html + /// [`Context`]: timestamp/context/struct.Context.html pub fn new_v6(ts: Timestamp, node_id: &[u8; 6]) -> Self { let (ticks, counter) = ts.to_rfc4122();