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`.
This commit is contained in:
Ivan Enderlin 2024-03-21 09:05:30 +01:00
parent c120da79d1
commit ae170362a5
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -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,
}