From ae170362a577191742a2abd92673a14b5f24e935 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Thu, 21 Mar 2024 09:05:30 +0100 Subject: [PATCH] doc(crypto-ffi): `Device::first_time_seen_ts` has an incorrect unit. This patch changes seconds to milliseconds for the description of `Device::first_time_seen_ts`. --- bindings/matrix-sdk-crypto-ffi/src/device.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/matrix-sdk-crypto-ffi/src/device.rs b/bindings/matrix-sdk-crypto-ffi/src/device.rs index 40f43a45e..921028567 100644 --- a/bindings/matrix-sdk-crypto-ffi/src/device.rs +++ b/bindings/matrix-sdk-crypto-ffi/src/device.rs @@ -25,8 +25,8 @@ pub struct Device { /// Is our cross signing identity trusted and does the identity trust the /// device. pub cross_signing_trusted: bool, - /// The first time this device was seen in local timestamp, seconds since - /// epoch. + /// The first time this device was seen in local timestamp, milliseconds + /// since epoch. pub first_time_seen_ts: u64, }