This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push: new e87c2061 Javadoc spelling e87c2061 is described below commit e87c2061ae224f40253ab4ccd1a62f4e0dc88fea Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Nov 26 15:55:48 2023 -0500 Javadoc spelling --- src/main/java/org/apache/commons/net/ntp/TimeStamp.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/net/ntp/TimeStamp.java b/src/main/java/org/apache/commons/net/ntp/TimeStamp.java index 26ada4bf..c1f1b310 100644 --- a/src/main/java/org/apache/commons/net/ntp/TimeStamp.java +++ b/src/main/java/org/apache/commons/net/ntp/TimeStamp.java @@ -123,7 +123,7 @@ public class TimeStamp implements Serializable, Comparable<TimeStamp> { /** * Converts 64-bit NTP timestamp to Java standard time. * - * Note that java time (milliseconds) by definition has less precision than NTP time (picoseconds) so converting NTP timestamp to java time and back to NTP + * Note that java time (milliseconds) by definition has less precision than NTP time (picoseconds) so converting NTP timestamp to Java time and back to NTP * timestamp loses precision. For example, Tue, Dec 17 2002 09:07:24.810 EST is represented by a single Java-based time value of f22cd1fc8a, but its NTP * equivalent are all values ranging from c1a9ae1c.cf5c28f5 to c1a9ae1c.cf9db22c. *