Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update links in docs sections #289

Merged
merged 1 commit into from
Jul 29, 2024
Merged
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
10 changes: 5 additions & 5 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,7 @@ export namespace Temporal {
* which happens during the whole day no matter which time zone it's happening
* in.
*
* See https://tc39.es/proposal-temporal/docs/date.html for more details.
* See https://tc39.es/proposal-temporal/docs/plaindate.html for more details.
*/
export class PlainDate {
static from(item: Temporal.PlainDate | PlainDateLike | string, options?: AssignmentOptions): Temporal.PlainDate;
Expand Down Expand Up @@ -893,7 +893,7 @@ export namespace Temporal {
* and `Temporal.PlainMonthDay` all carry less information and should be used when
* complete information is not required.
*
* See https://tc39.es/proposal-temporal/docs/datetime.html for more details.
* See https://tc39.es/proposal-temporal/docs/plaindatetime.html for more details.
*/
export class PlainDateTime {
static from(
Expand Down Expand Up @@ -992,7 +992,7 @@ export namespace Temporal {
* without a year. For example, it could be used to represent a yearly
* recurring event, like "Bastille Day is on the 14th of July."
*
* See https://tc39.es/proposal-temporal/docs/monthday.html for more details.
* See https://tc39.es/proposal-temporal/docs/plainmonthday.html for more details.
*/
export class PlainMonthDay {
static from(
Expand Down Expand Up @@ -1046,7 +1046,7 @@ export namespace Temporal {
* `Temporal.PlainDateTime` by combining it with a `Temporal.PlainDate` using the
* `toPlainDateTime()` method.
*
* See https://tc39.es/proposal-temporal/docs/time.html for more details.
* See https://tc39.es/proposal-temporal/docs/plaintime.html for more details.
*/
export class PlainTime {
static from(item: Temporal.PlainTime | PlainTimeLike | string, options?: AssignmentOptions): Temporal.PlainTime;
Expand Down Expand Up @@ -1168,7 +1168,7 @@ export namespace Temporal {
* example, it could be used to represent a particular instance of a monthly
* recurring event, like "the June 2019 meeting".
*
* See https://tc39.es/proposal-temporal/docs/yearmonth.html for more details.
* See https://tc39.es/proposal-temporal/docs/plainyearmonth.html for more details.
*/
export class PlainYearMonth {
static from(
Expand Down
Loading