From 0c242a586da266029427c05483e4617cc0e54fac Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 24 Apr 2026 04:41:55 +0000 Subject: [PATCH 1/3] docs: align `constants/time/milliseconds-in-minute` with namespace Notes wording Normalized the `## Notes` sentence in README.md and docs/repl.txt to the full daylight-savings/timezones phrasing used by 12/15 (80%) siblings in `@stdlib/constants/time`. --- .../@stdlib/constants/time/milliseconds-in-minute/README.md | 2 +- .../constants/time/milliseconds-in-minute/docs/repl.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/time/milliseconds-in-minute/README.md b/lib/node_modules/@stdlib/constants/time/milliseconds-in-minute/README.md index 70acb1267d4e..c6778917aeca 100644 --- a/lib/node_modules/@stdlib/constants/time/milliseconds-in-minute/README.md +++ b/lib/node_modules/@stdlib/constants/time/milliseconds-in-minute/README.md @@ -47,7 +47,7 @@ var bool = ( MILLISECONDS_IN_MINUTE === 60000 ); ## Notes -- The value is a generalization and does **not** take into account inaccuracies arising due to complications with time and dates. +- The 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. diff --git a/lib/node_modules/@stdlib/constants/time/milliseconds-in-minute/docs/repl.txt b/lib/node_modules/@stdlib/constants/time/milliseconds-in-minute/docs/repl.txt index 341bc4b960ef..24e4a2b33542 100644 --- a/lib/node_modules/@stdlib/constants/time/milliseconds-in-minute/docs/repl.txt +++ b/lib/node_modules/@stdlib/constants/time/milliseconds-in-minute/docs/repl.txt @@ -3,7 +3,8 @@ Number of milliseconds in a minute. The value is a generalization and does **not** take into account - inaccuracies arising due to complications with time and dates. + inaccuracies due to daylight savings conventions, crossing timezones, or + other complications with time and dates. Examples -------- From 1581153b1ca48b345f685025f0e00bf75d067d23 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 24 Apr 2026 04:42:11 +0000 Subject: [PATCH 2/3] docs: align `constants/time/milliseconds-in-second` with namespace Notes wording Normalized the `## Notes` sentence in README.md and docs/repl.txt to the full daylight-savings/timezones phrasing used by 12/15 (80%) siblings in `@stdlib/constants/time`. --- .../@stdlib/constants/time/milliseconds-in-second/README.md | 2 +- .../constants/time/milliseconds-in-second/docs/repl.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/time/milliseconds-in-second/README.md b/lib/node_modules/@stdlib/constants/time/milliseconds-in-second/README.md index 6343c940a085..7b9ac0d80190 100644 --- a/lib/node_modules/@stdlib/constants/time/milliseconds-in-second/README.md +++ b/lib/node_modules/@stdlib/constants/time/milliseconds-in-second/README.md @@ -47,7 +47,7 @@ var bool = ( MILLISECONDS_IN_SECOND === 1000 ); ## Notes -- The value is a generalization and does **not** take into account inaccuracies arising due to complications with time and dates. +- The 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. diff --git a/lib/node_modules/@stdlib/constants/time/milliseconds-in-second/docs/repl.txt b/lib/node_modules/@stdlib/constants/time/milliseconds-in-second/docs/repl.txt index 682d896997a0..3b945ff30201 100644 --- a/lib/node_modules/@stdlib/constants/time/milliseconds-in-second/docs/repl.txt +++ b/lib/node_modules/@stdlib/constants/time/milliseconds-in-second/docs/repl.txt @@ -3,7 +3,8 @@ Number of milliseconds in a second. The value is a generalization and does **not** take into account - inaccuracies arising due to complications with time and dates. + inaccuracies due to daylight savings conventions, crossing timezones, or + other complications with time and dates. Examples -------- From df2926bbb7f2910fc5e5b8c24b03b8d612c8cc97 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 24 Apr 2026 04:42:27 +0000 Subject: [PATCH 3/3] docs: align `constants/time/seconds-in-minute` with namespace Notes wording Normalized the `## Notes` sentence in README.md and docs/repl.txt to the full daylight-savings/timezones phrasing used by 12/15 (80%) siblings in `@stdlib/constants/time`. --- .../@stdlib/constants/time/seconds-in-minute/README.md | 2 +- .../@stdlib/constants/time/seconds-in-minute/docs/repl.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/time/seconds-in-minute/README.md b/lib/node_modules/@stdlib/constants/time/seconds-in-minute/README.md index 8d3437122b9f..ae8d96418435 100644 --- a/lib/node_modules/@stdlib/constants/time/seconds-in-minute/README.md +++ b/lib/node_modules/@stdlib/constants/time/seconds-in-minute/README.md @@ -47,7 +47,7 @@ var bool = ( SECONDS_IN_MINUTE === 60 ); ## Notes -- The value is a generalization and does **not** take into account inaccuracies arising due to complications with time and dates. +- The 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. diff --git a/lib/node_modules/@stdlib/constants/time/seconds-in-minute/docs/repl.txt b/lib/node_modules/@stdlib/constants/time/seconds-in-minute/docs/repl.txt index 6e6ffafc5162..4248f5e287a2 100644 --- a/lib/node_modules/@stdlib/constants/time/seconds-in-minute/docs/repl.txt +++ b/lib/node_modules/@stdlib/constants/time/seconds-in-minute/docs/repl.txt @@ -3,7 +3,8 @@ Number of seconds in a minute. The value is a generalization and does **not** take into account - inaccuracies arising due to complications with time and dates. + inaccuracies due to daylight savings conventions, crossing timezones, or + other complications with time and dates. Examples --------