docs: removed unnecessary slash in comments (#9533)

This commit is contained in:
Oskar Jaskólski 2022-12-03 12:58:34 +01:00 committed by GitHub
parent 26107e6b31
commit b566d54de3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1000,7 +1000,7 @@ Let's change our photo's `@OneToOne` decorator a bit:
```typescript
export class Photo {
/// ... other columns
// ... other columns
@OneToOne(() => PhotoMetadata, (metadata) => metadata.photo, {
cascade: true,
@ -1155,7 +1155,7 @@ Now let's add the inverse side of our relation to the `Photo` class:
```typescript
export class Photo {
/// ... other columns
// ... other columns
@ManyToMany(() => Album, (album) => album.photos)
albums: Album[]