Skip to content

Commit 8781ded

Browse files
committed
fixed broken links
1 parent b9cdb1a commit 8781ded

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/content/docs/pipelines/sources/worker/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { Render, PackageManagers } from "~/components";
1313
You can send records to your Pipeline directly from a [Cloudflare Worker](/workers/). To do so, you need to:
1414
1. Create a Worker
1515
2. Create a Pipeline
16-
3. Add your Pipeline as a binding in your Workers' `wrangler.toml` file
16+
3. Add your Pipeline as a binding in your Workers' Wrangler configuration
1717
4. Write your Worker, to send records to your Pipeline
1818
5. Deploy your Worker
1919
6. Verify in R2
@@ -39,7 +39,7 @@ To create a Worker, run the following command in a terminal:
3939
}}
4040
/>
4141

42-
This will create a new directory, which will include both a `src/index.ts` Worker script, and a [`wrangler.toml`](/workers/wrangler/configuration/) configuration file. Navigate into the newly created directory:
42+
This will create a new directory, which will include both a `src/index.ts` Worker script, and a [`wrangler`](/workers/wrangler/configuration/) configuration file. Navigate into the newly created directory:
4343

4444
```sh
4545
cd pipeline-worker

src/content/docs/pipelines/sources/worker/javascript-apis.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ head:
1212
This guide details the Pipelines API within Cloudflare Workers.
1313

1414
## Send data to a Pipeline from a Worker
15-
Pipelines exposes an API directly to your Workers scripts via the [bindings](workers/runtime-apis/bindings/#what-is-a-binding) concept. Bindings allow you to securely send data to a Pipeline without having to manage API keys or clients.
15+
Pipelines exposes an API directly to your Workers scripts via the [bindings](/workers/runtime-apis/bindings/#what-is-a-binding) concept. Bindings allow you to securely send data to a Pipeline without having to manage API keys or clients.
1616

1717
You can bind to a Pipeline by defining a `[[pipelines]]` binding within your Wrangler configuration. For example:
1818

@@ -22,9 +22,9 @@ import { WranglerConfig } from "~/components";
2222

2323
```toml title="wrangler.toml"
2424
#:schema node_modules/wrangler/config-schema.json
25-
name = "workflows-starter"
25+
name = "pipeline-starter"
2626
main = "src/index.ts"
27-
compatibility_date = "2024-10-22"
27+
compatibility_date = "2025-04-01"
2828

2929
[[pipelines]]
3030
pipeline = "<MY-PIPELINE-NAME>" # The name of your Pipeline

0 commit comments

Comments
 (0)