diff --git a/src/libraries/System.Private.CoreLib/src/System/DateOnly.cs b/src/libraries/System.Private.CoreLib/src/System/DateOnly.cs index 5fb02c342e2e2..8a16019108d87 100644 --- a/src/libraries/System.Private.CoreLib/src/System/DateOnly.cs +++ b/src/libraries/System.Private.CoreLib/src/System/DateOnly.cs @@ -115,6 +115,9 @@ public static DateOnly FromDayNumber(int dayNumber) /// /// The number of days to add. To subtract days, specify a negative number. /// An instance whose value is the sum of the date represented by this instance and the number of days represented by value. + /// + /// Thrown if the resulting value would be greater than . + /// public DateOnly AddDays(int value) { int newDayNumber = _dayNumber + value;