Skip to content

Commit a0321c6

Browse files
Merge pull request #1407 from ngbrown/ngbrown-patch-1
Clarify Unix Time units in AmqpTimestamp
2 parents eb8e031 + 2e23817 commit a0321c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/RabbitMQ.Client/client/api/AmqpTimestamp.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ namespace RabbitMQ.Client
5656
/// <summary>
5757
/// Construct an <see cref="AmqpTimestamp"/>.
5858
/// </summary>
59-
/// <param name="unixTime">Unix time.</param>
59+
/// <param name="unixTime">Unix time in seconds.</param>
6060
public AmqpTimestamp(long unixTime) : this()
6161
{
6262
UnixTime = unixTime;
6363
}
6464

6565
/// <summary>
66-
/// Unix time.
66+
/// Unix time in seconds.
6767
/// </summary>
6868
public long UnixTime { get; }
6969

0 commit comments

Comments
 (0)