From f3d9196a7e378e81da57a06c83b88d7c043cbb45 Mon Sep 17 00:00:00 2001 From: Guillermo Date: Sat, 13 Jan 2024 21:16:17 +0100 Subject: [PATCH] fix(docs) Fix command name (#6368) --- docs/docs/developer/pr-checklist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/developer/pr-checklist.md b/docs/docs/developer/pr-checklist.md index 4318f6106c..59aaa4fc75 100644 --- a/docs/docs/developer/pr-checklist.md +++ b/docs/docs/developer/pr-checklist.md @@ -6,7 +6,7 @@ When contributing code through a pull request, please check the following: - [ ] `npm run lint` (linting via ESLint) - [ ] `npm run format` (formatting via Prettier) -- [ ] `npm run check` (Type checking via SvelteKit) +- [ ] `npm run check:svelte` (Type checking via SvelteKit) - [ ] `npm test` (Tests via Jest) :::tip