From 47df3acf59107e296dbe40b85f2ebfdb25514416 Mon Sep 17 00:00:00 2001 From: Arturas Date: Thu, 6 May 2021 21:24:18 +0100 Subject: [PATCH] docs: Fixed the import name in the README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c7cf4ee..0e70b81 100644 --- a/README.md +++ b/README.md @@ -103,12 +103,12 @@ Promise # The plugin config ```javascript -import {wasmBindgenPlugin} from '@alorel/rollup-plugin-wasm-bindgen-web'; +import {wasmBindgen} from '@alorel/rollup-plugin-wasm-bindgen-web'; export default { // ... your config plugins: [ - wasmBindgenPlugin(config) + wasmBindgen(config) ] } ```