From 52785a62a6720d5594e1bcd7d53ccbe36731751e Mon Sep 17 00:00:00 2001 From: Rafael Garcia Date: Wed, 16 Sep 2026 15:53:43 -0400 Subject: [PATCH] Align REPL help with API lifecycle semantics --- cmd/browsers.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/browsers.go b/cmd/browsers.go index 43c1c79b..d8bcfd90 100644 --- a/cmd/browsers.go +++ b/cmd/browsers.go @@ -3142,9 +3142,9 @@ ignored: emit output with 'repl.write(...)', console methods, or 'repl.emitImage(...)'. The runtime also exposes browser-control helpers, WebMCP, Patchright, Playwright, and raw CDP. -Executions are serialized. A timeout, crash, or protocol failure terminates the -REPL and changes its REPL ID, discarding top-level bindings. This is unrestricted -code execution inside the browser VM and is not sandboxed.`, +Executions are serialized. A timeout, crash, OOM, or protocol failure terminates +the REPL and changes its repl_id, discarding top-level bindings. This is +unrestricted code execution inside the browser VM and is not sandboxed.`, Args: cobra.MinimumNArgs(1), RunE: runBrowsersRepl, }