Fix typo in code examples

This commit is contained in:
Tobias Baunbaek
2024-02-20 16:33:12 +01:00
parent 4cd6a9a03b
commit cbc6771450
2 changed files with 4 additions and 4 deletions

View File

@@ -19,8 +19,8 @@ This code should run as the first thing in the application:
``` js
if (Pear.config.dev) {
const { Inspector } = await import('pear-inspect')
const inpector = await new Inspector()
const key = await inpector.enable()
const inspector = await new Inspector()
const key = await inspector.enable()
console.log(`Debug with pear://runtime/devtools/${key.toString('hex')}`)
}
```