docs: fix naming consistency (#10383)

This commit is contained in:
Erik McKelvey 2023-09-30 02:44:38 -07:00 committed by GitHub
parent 35a3a7f049
commit 8d0e7f98c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ This syntax doesn't escape your values, you need to handle escape on your own.
If the values you are trying to insert conflict due to existing data the `orUpdate` function can be used to update specific values on the conflicted target.
```typescript
await datasource
await dataSource
.createQueryBuilder()
.insert()
.into(User)
@ -60,7 +60,7 @@ await datasource
### Skip data update if values have not changed (Postgres)
```typescript
await datasource
await dataSource
.createQueryBuilder()
.insert()
.into(User)
@ -82,7 +82,7 @@ await datasource
### Use partial index (Postgres)
```typescript
await datasource
await dataSource
.createQueryBuilder()
.insert()
.into(User)
@ -100,4 +100,4 @@ await datasource
}
)
.execute()
```
```