diff --git a/lib/node_modules/@stdlib/time/day-of-quarter/README.md b/lib/node_modules/@stdlib/time/day-of-quarter/README.md index f9aed170a9c1..b4bc2be59130 100644 --- a/lib/node_modules/@stdlib/time/day-of-quarter/README.md +++ b/lib/node_modules/@stdlib/time/day-of-quarter/README.md @@ -70,6 +70,16 @@ var num = dayOfQuarter( new Date() ); +
+ +## Notes + +- The function's return value is a generalization and does **not** take into account inaccuracies due to daylight savings conventions, crossing timezones, or other complications with time and dates. + +
+ + +
## Examples diff --git a/lib/node_modules/@stdlib/time/day-of-year/README.md b/lib/node_modules/@stdlib/time/day-of-year/README.md index 753c56267339..3699adbed93a 100644 --- a/lib/node_modules/@stdlib/time/day-of-year/README.md +++ b/lib/node_modules/@stdlib/time/day-of-year/README.md @@ -73,6 +73,16 @@ var num = dayOfYear( new Date() ); +
+ +## Notes + +- The function's return value is a generalization and does **not** take into account inaccuracies due to daylight savings conventions, crossing timezones, or other complications with time and dates. + +
+ + +
## Examples