Skip to content

Commit 0a4edb3

Browse files
remove all and and repetitions
1 parent 41fa7a5 commit 0a4edb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/content/docs/browser-rendering/rest-api/scrape-endpoint.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The `/scrape` endpoint extracts structured data from specific elements on a webp
99

1010
## Basic usage
1111

12-
Go to `https://example.com` and and extract metadata from all `h1` and `a` elements in the DOM.
12+
Go to `https://example.com` and extract metadata from all `h1` and `a` elements in the DOM.
1313

1414
```bash
1515
curl -X POST 'https://api.cloudflare.com/client/v4/accounts/<accountId>/browser-rendering/scrape' \

src/content/docs/d1/best-practices/query-d1.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ D1 understands SQLite semantics, which allows you to query a database using SQL
1919

2020
### Use foreign key relationships
2121

22-
When using SQL with D1, you may wish to define and and enforce foreign key constraints across tables in a database. Foreign key constraints allow you to enforce relationships across tables, or prevent you from deleting rows that reference rows in other tables. An example of a foreign key relationship is shown below.
22+
When using SQL with D1, you may wish to define and enforce foreign key constraints across tables in a database. Foreign key constraints allow you to enforce relationships across tables, or prevent you from deleting rows that reference rows in other tables. An example of a foreign key relationship is shown below.
2323

2424
```sql
2525
CREATE TABLE users (

0 commit comments

Comments
 (0)