aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/user_guide/timestamped_data/data_synchronisation.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/user_guide/timestamped_data/data_synchronisation.md b/docs/user_guide/timestamped_data/data_synchronisation.md
index 4454fa4..de861a9 100644
--- a/docs/user_guide/timestamped_data/data_synchronisation.md
+++ b/docs/user_guide/timestamped_data/data_synchronisation.md
@@ -14,7 +14,7 @@ The code below shows how to use [pop_last_before](/argaze/#argaze.DataStructures
``` python
from argaze import DataStructures
-# Assuming A_data_record and B_data_record are [TimeStampedBuffer](/argaze/#argaze.DataStructures.TimeStampedBuffer) instances with different timestamps
+# Assuming A_data_record and B_data_record are TimeStampedBuffer instances with different timestamps
for A_ts, A_data in A_data_record.items():
@@ -39,7 +39,7 @@ The code below shows how to use [pop_last_until](/argaze/#argaze.DataStructures.
``` python
from argaze import DataStructures
-# Assuming A_data_record and B_data_record are [TimeStampedBuffer](/argaze/#argaze.DataStructures.TimeStampedBuffer) instances with different timestamps
+# Assuming A_data_record and B_data_record are TimeStampedBuffer instances with different timestamps
for A_ts, A_data in A_data_record.items():
@@ -64,7 +64,7 @@ The code below shows how to use [get_last_before](/argaze/#argaze.DataStructures
``` python
from argaze import DataStructures
-# Assuming A_data_record and B_data_record are [TimeStampedBuffer](/argaze/#argaze.DataStructures.TimeStampedBuffer) instances with different timestamps
+# Assuming A_data_record and B_data_record are TimeStampedBuffer instances with different timestamps
for A_ts, A_data in A_data_record.items():