Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</section>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------
Expand Down
Loading