From 27bdf557101ce2dbb895b8eca89df36e5a501a12 Mon Sep 17 00:00:00 2001 From: Iulian Onofrei <6d0847b9@opayq.com> Date: Wed, 10 Mar 2021 22:22:58 +0200 Subject: [PATCH] Fix incorrect link in JSDate documentation --- Sources/JavaScriptKit/BasicObjects/JSDate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/JavaScriptKit/BasicObjects/JSDate.swift b/Sources/JavaScriptKit/BasicObjects/JSDate.swift index 651a39d1b..3f38f5aba 100644 --- a/Sources/JavaScriptKit/BasicObjects/JSDate.swift +++ b/Sources/JavaScriptKit/BasicObjects/JSDate.swift @@ -1,5 +1,5 @@ /** A wrapper around the [JavaScript Date -class](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) that +class](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date) that exposes its properties in a type-safe way. This doesn't 100% match the JS API, for example `getMonth`/`setMonth` etc accessor methods are converted to properties, but the rest of it matches in the naming. Parts of the JavaScript `Date` API that are not consistent across browsers and JS