From 0140f006e004d00c936041d7ac10100dd6c71670 Mon Sep 17 00:00:00 2001 From: Andreas Reich Date: Fri, 13 Sep 2024 16:37:41 +0200 Subject: [PATCH] fix typos --- rerun_cpp/src/rerun/components/video_timestamp.hpp | 1 - rerun_cpp/src/rerun/components/video_timestamp_ext.cpp | 1 - rerun_py/rerun_sdk/rerun/components/video_timestamp_ext.py | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/rerun_cpp/src/rerun/components/video_timestamp.hpp b/rerun_cpp/src/rerun/components/video_timestamp.hpp index 00d6a5aaacc6..ae5e840b13be 100644 --- a/rerun_cpp/src/rerun/components/video_timestamp.hpp +++ b/rerun_cpp/src/rerun/components/video_timestamp.hpp @@ -27,7 +27,6 @@ namespace rerun::components { } /// Creates a new `VideoTimestamp` from time since video start. - /// \param time Time since video start. template VideoTimestamp(std::chrono::duration time) : VideoTimestamp( diff --git a/rerun_cpp/src/rerun/components/video_timestamp_ext.cpp b/rerun_cpp/src/rerun/components/video_timestamp_ext.cpp index b05e85d54179..97d5e61521fd 100644 --- a/rerun_cpp/src/rerun/components/video_timestamp_ext.cpp +++ b/rerun_cpp/src/rerun/components/video_timestamp_ext.cpp @@ -21,7 +21,6 @@ namespace rerun { } /// Creates a new `VideoTimestamp` from time since video start. - /// \param time Time since video start. template VideoTimestamp(std::chrono::duration time) : VideoTimestamp( diff --git a/rerun_py/rerun_sdk/rerun/components/video_timestamp_ext.py b/rerun_py/rerun_sdk/rerun/components/video_timestamp_ext.py index fbee654c9c07..98403aa558cc 100644 --- a/rerun_py/rerun_sdk/rerun/components/video_timestamp_ext.py +++ b/rerun_py/rerun_sdk/rerun/components/video_timestamp_ext.py @@ -54,7 +54,7 @@ def nanoseconds( Parameters ---------- nanoseconds: - Timestamp values in milliseconds since video start. + Timestamp values in nanoseconds since video start. """ nanoseconds = np.asarray(nanoseconds, dtype=np.int64)