Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.

Commit 53ff4d3

Browse files
committed
docs(ipc): fix embedded map system example missed by prior sweep
The previous doc sweep rewrote `<code>NAME</code>` and `(NAME ` patterns but missed `(map system ["echo hi"])` — the builtin sat in a higher-order position inside another bracketed form, so neither substitution matched. Rewrites to `(map .sys.exec ["echo hi"])`, which is both the accurate new name and the exact expression the restricted-mode test in test_store.c already exercises.
1 parent 8835b01 commit 53ff4d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

website/docs/ipc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ <h3>-U (password + restricted mode)</h3>
188188
<span class="hl-comment">;; =&gt; 3 (queries still work)</span></code></pre>
189189

190190
<div class="info-box">
191-
<strong>Security note.</strong> Restriction applies to all dispatch paths including higher-order functions. <code>(map system ["echo hi"])</code> is also blocked in restricted mode.
191+
<strong>Security note.</strong> Restriction applies to all dispatch paths including higher-order functions. <code>(map .sys.exec ["echo hi"])</code> is also blocked in restricted mode.
192192
</div>
193193

194194
<h2 id="client-builtins">Client Builtins</h2>

0 commit comments

Comments
 (0)