Skip to content

Commit 47a8a8f

Browse files
committed
fix(docs): replace backtick symbol prefix with single quote across website
Rayfall uses 'sym not `sym for symbol literals.
1 parent 986e1f0 commit 47a8a8f

6 files changed

Lines changed: 133 additions & 133 deletions

File tree

website/docs/guide-ipc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ <h3>Query from a Client</h3>
168168
<span class="hl-comment">;; => the full trades table is returned</span>
169169

170170
<span class="hl-comment">;; Run a filtered query</span>
171-
(<span class="hl-fn">hsend</span> h <span class="hl-str">"(select {from: trades where: (= sym `AAPL)})"</span>)
171+
(<span class="hl-fn">hsend</span> h <span class="hl-str">"(select {from: trades where: (= sym 'AAPL)})"</span>)
172172

173173
(<span class="hl-fn">hclose</span> h)</code></pre>
174174

website/docs/guide-memory.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ <h3>Checking Memory Before and After an Operation</h3>
189189
(<span class="hl-kw">set</span> after (<span class="hl-fn">memstat</span>))
190190

191191
<span class="hl-comment">;; See how much memory the load consumed</span>
192-
(<span class="hl-fn">-</span> (after <span class="hl-sym">`bytes-allocated</span>) (before <span class="hl-sym">`bytes-allocated</span>))</code></pre>
192+
(<span class="hl-fn">-</span> (after <span class="hl-sym">'bytes-allocated</span>) (before <span class="hl-sym">'bytes-allocated</span>))</code></pre>
193193
<pre><code>838860800</code></pre>
194194
<p>In this example, loading 10 million rows consumed roughly 800 MB of heap memory.</p>
195195

0 commit comments

Comments
 (0)