Skip to content

Commit 94d3303

Browse files
committed
fix duplicate string
1 parent 9f87a59 commit 94d3303

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

src/content/docs/workers/reference/how-the-cache-works.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The Cache API is not compatible with tiered caching. To take advantage of tiered
3535

3636
When using single-file purge to purge assets cached by a Worker, make sure not to purge the end user URL. Instead, purge the URL that is in the `fetch` request. For example, you have a Worker that runs on `https://example.com/hello` and this Worker makes a `fetch` request to `https://notexample.com/hello`.
3737

38-
As far as cache is concerned, the asset in the `fetch` request (`https://notexample.com/hello`) is the asset that is cached (`https://notexample.com/hello`). To purge it, you need to purge `https://notexample.com/hello`.
38+
As far as cache is concerned, the asset in the `fetch` request (`https://notexample.com/hello`) is the asset that is cached. To purge it, you need to purge `https://notexample.com/hello`.
3939

4040
Purging the end user URL, `https://example.com/hello`, will not work because that is not the URL that cache sees. You need to confirm in your Worker which URL you are actually fetching, so you can purge the correct asset.
4141

src/content/videos/index.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ entries:
286286
content_type: 🎥 Video
287287
pcx_content_type: tutorial
288288
- link: https://developers.cloudflare.com/workers/frameworks/framework-guides/nextjs/#video-tutorial
289-
title: Deploy NextJS to your Workers Application
289+
title: Deploy NextJS to your Workers Application
290290
description: Watch to learn how to easily deploy your NextJS application to the Cloudflare global network.
291291
tags: [NextJS, Workers, Pages]
292292
languages: [TypeScript]
@@ -310,10 +310,10 @@ entries:
310310
updated: 2024-10-31
311311
difficulty: Intermediate
312312
content_type: 🎥 Video
313-
pcx_content_type: tutorial
313+
pcx_content_type: tutorial
314314
- link: https://youtu.be/RmF05GpLE20
315315
title: DevTalk Episode 02 | Post-Quantum Cryptography
316-
description: Bas Westerbaan is Cloudflare’s Research Lead on Post-Quantum efforts. His work ranges from cryptographic implementation and standardization, to driving large-scale experiment and subsequent deployment.
316+
description: Bas Westerbaan is Cloudflare’s Research Lead on Post-Quantum efforts. His work ranges from cryptographic implementation and standardization, to driving large-scale experiment and subsequent deployment.
317317
tags: [SSL]
318318
languages: [TypeScript]
319319
products: [SSL]
@@ -322,7 +322,7 @@ entries:
322322
updated: 2024-11-14
323323
difficulty: Beginner
324324
content_type: 🎥 Video
325-
pcx_content_type: tutorial
325+
pcx_content_type: tutorial
326326
- link: https://youtu.be/xu4Wb-IppmM
327327
title: OpenAI Relay Server on Cloudflare Workers
328328
description: In this video, Craig Dennis walks you through the deployment of OpenAI's relay server to use with their realtime API.
@@ -334,7 +334,7 @@ entries:
334334
updated: 2024-11-14
335335
difficulty: Intermediate
336336
content_type: 🎥 Video
337-
pcx_content_type: tutorial
337+
pcx_content_type: tutorial
338338
- link: https://developers.cloudflare.com/workers/runtime-apis/rpc/#video-tutorial
339339
title: Workers RPC Tutorial
340340
description: Learn how to implement RPC in your JavaScript applications and build serverless solutions.
@@ -346,10 +346,10 @@ entries:
346346
updated: 2024-11-10
347347
difficulty: Beginner
348348
content_type: 🎥 Video
349-
pcx_content_type: tutorial
349+
pcx_content_type: tutorial
350350
- link: https://youtu.be/B2bLUc3iOsI
351351
title: Deploy your React App to Cloudflare Workers
352-
description: Learn how to deploy an existing React application to Cloudflare Workers.
352+
description: Learn how to deploy an existing React application to Cloudflare Workers.
353353
tags: [Workers, Pages]
354354
languages: [TypeScript]
355355
products: [Workers, Pages]
@@ -358,10 +358,10 @@ entries:
358358
updated: 2024-11-05
359359
difficulty: Intermediate
360360
content_type: 🎥 Video
361-
pcx_content_type: tutorial
362-
# - link:
363-
# title:
364-
# description:
361+
pcx_content_type: tutorial
362+
# - link:
363+
# title:
364+
# description:
365365
# tags: [Workers, Pages]
366366
# languages: [TypeScript]
367367
# products: [Workers, Pages]
@@ -370,4 +370,4 @@ entries:
370370
# updated: 2024-11-14
371371
# difficulty: Intermediate
372372
# content_type: 🎥 Video
373-
# pcx_content_type: tutorial
373+
# pcx_content_type: tutorial

0 commit comments

Comments
 (0)