From 04cce6602d23a7c8e3ad46952b708b16a16166d6 Mon Sep 17 00:00:00 2001 From: Vanessa Freudenberg Date: Fri, 9 Oct 2020 15:16:29 -0700 Subject: [PATCH] Docs: fix code snippet --- docs/05-plugin-development.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/05-plugin-development.md b/docs/05-plugin-development.md index 1f6224ba8cf..10c07d74f4d 100644 --- a/docs/05-plugin-development.md +++ b/docs/05-plugin-development.md @@ -144,7 +144,7 @@ Next Hook: [`load`](guide/en/#load) if the resolved id that has not yet been loa Defines a custom resolver. A resolver can be useful for e.g. locating third-party dependencies. Here `source` is the importee exactly as it is written in the import statement, i.e. for ```js -import { foo } from '../bar,js'; +import { foo } from '../bar.js'; ``` the source will be `"../bar.js""`.