Index: corelib/src/date.dart |
diff --git a/corelib/src/date.dart b/corelib/src/date.dart |
index 0b35247cd98e7d9b4d6983b58598a61f8ec15819..16632981e16ba727fa495b469f184c73b3691ef7 100644 |
--- a/corelib/src/date.dart |
+++ b/corelib/src/date.dart |
@@ -6,6 +6,10 @@ |
/** |
* Date is the public interface to a point in time. |
+ * |
+ * It can represent time values that are at a distance of at most |
+ * 8,640,000,000,000,000ms (100,000,000 days) from epoch (1970-01-01 UTC). In |
+ * other words: [:value.abs() <= 8640000000000000:]. |
*/ |
interface Date extends Comparable, Hashable default DateImplementation { |
// Weekday constants that are returned by [weekday] method: |