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

@@ -150,8 +150,8 @@ customElements.define('developer-tooling', class extends HTMLElement {
<pre><code>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'))
}</code></pre>