From 3b29eb14e00182614c986d8498b483a9917976e7 Mon Sep 17 00:00:00 2001 From: Abdullah Osama Date: Mon, 26 Dec 2022 19:53:46 +0200 Subject: [PATCH] docs: fix npm link (#16710) --- docs/src/user-guide/core-concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/user-guide/core-concepts.md b/docs/src/user-guide/core-concepts.md index b032669401e..d373f0971e0 100644 --- a/docs/src/user-guide/core-concepts.md +++ b/docs/src/user-guide/core-concepts.md @@ -51,7 +51,7 @@ An ESLint parser converts code into an abstract syntax tree that ESLint can eval Custom parsers let ESLint parse non-standard JavaScript syntax. Often custom parsers are included as part of shareable configurations or plugins, so you don't have to use them directly. -For example, [@typescript-eslint/parser](npmjs.com/package/@typescript-eslint/parser) is a custom parser included in the [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint) project that lets ESLint parse TypeScript code. +For example, [@typescript-eslint/parser](https://www.npmjs.com/package/@typescript-eslint/parser) is a custom parser included in the [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint) project that lets ESLint parse TypeScript code. ## Custom Processors