Skip to content

Commit

Permalink
docs: fix arguments (#5044)
Browse files Browse the repository at this point in the history
Change string booleans (i.e. 'true') into boolean booleans (i.e. true).
  • Loading branch information
mateomorris authored Apr 9, 2024
1 parent 0f41e38 commit d8f3404
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/api/nodes/youtube.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Default: `false`

```js
Youtube.configure({
ccLoadPolicy: 'true',
ccLoadPolicy: true,
})
```

Expand All @@ -122,7 +122,7 @@ Default: `false`

```js
Youtube.configure({
disableKBcontrols: 'true',
disableKBcontrols: true,
})
```

Expand All @@ -133,7 +133,7 @@ Default: `false`

```js
Youtube.configure({
enableIFrameApi: 'true',
enableIFrameApi: true,
})
```

Expand Down Expand Up @@ -189,7 +189,7 @@ Default: `false`

```js
Youtube.configure({
loop: 'true',
loop: true,
})
```

Expand All @@ -211,7 +211,7 @@ Default: `false`

```js
Youtube.configure({
modestBranding: 'true',
modestBranding: true,
})
```

Expand Down

0 comments on commit d8f3404

Please sign in to comment.