From 60e606ef9509db789448cac40db84f83ed6434f2 Mon Sep 17 00:00:00 2001 From: tupe12334 Date: Mon, 3 Oct 2022 20:30:19 +0300 Subject: [PATCH] fix(docs): update the docs broken link to an archive --- docs/syntax-tree-format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/syntax-tree-format.md b/docs/syntax-tree-format.md index 0bcd41e07..708563cad 100644 --- a/docs/syntax-tree-format.md +++ b/docs/syntax-tree-format.md @@ -1,6 +1,6 @@ # Appendix A. Syntax Tree Format -Esprima syntax tree format is derived from the original version of [Mozilla Parser API](https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey/Parser_API), which is then formalized and expanded as the [ESTree specification](https://github.com/estree/estree). +Esprima syntax tree format is derived from the original version of [Mozilla Parser API](https://web.archive.org/web/20210314002546/https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey/Parser_API), which is then formalized and expanded as the [ESTree specification](https://github.com/estree/estree). **Note**: In the following sections, interfaces are described using the syntax of [TypeScript interface](https://www.typescriptlang.org/docs/handbook/interfaces.html).