From 117ee2bcd37addf53f1e2146330a5e4ac56b936d Mon Sep 17 00:00:00 2001 From: Ankur Datta <64993082+ankur-arch@users.noreply.github.com> Date: Tue, 16 Jun 2026 16:35:13 +0200 Subject: [PATCH] docs(compute): keep "$1.00 / 1M requests" rate on one line The Requests rate was the longest price string and wrapped mid-value in the rates table ("$1.00 / 1M" then "requests" on a second line). Replace its spaces with non-breaking spaces so the rate stays intact. The longer example-table code spans are left breakable. Co-Authored-By: Claude Opus 4.8 (1M context) --- apps/docs/content/docs/compute/pricing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/compute/pricing.mdx b/apps/docs/content/docs/compute/pricing.mdx index f5b57d4d60..15116a1fa7 100644 --- a/apps/docs/content/docs/compute/pricing.mdx +++ b/apps/docs/content/docs/compute/pricing.mdx @@ -22,7 +22,7 @@ Each meter measures a different resource: how often your app runs (requests), ho | Meter | Price | What it means | | ------------------ | --------------------- | ------------------------------------------------------------------------------------- | -| Requests | `$1.00 / 1M requests` | Every inbound request your app handles. | +| Requests | `$1.00 / 1M requests` | Every inbound request your app handles. | | Provisioned memory | `$0.006 / GB-hour` | Memory allocated while your app is running or intentionally kept awake. | | Active CPU | `$0.064 / vCPU-hour` | CPU time your app actually consumes. | | Outbound bandwidth | `$0.025 / GB` | Data your app sends out to the internet. Incoming requests do not count as bandwidth. |