From eb24aadc03b4db3f905292fca0f354d67808f3de Mon Sep 17 00:00:00 2001 From: James Murdza Date: Wed, 25 Jun 2025 12:24:38 -0700 Subject: [PATCH] Fix broken example code in README --- js/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/README.md b/js/README.md index 90c5c1ac..7ad1d4c3 100644 --- a/js/README.md +++ b/js/README.md @@ -36,7 +36,7 @@ E2B_API_KEY=e2b_*** ```ts import { Sandbox } from '@e2b/code-interpreter' -const sandbox = await Sandbox.create() +const sbx = await Sandbox.create() await sbx.runCode('x = 1') const execution = await sbx.runCode('x+=1; x')