Skip to content

Commit

Permalink
docs: make values more explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlaz committed Aug 20, 2024
1 parent 0cb6be6 commit 5c6e8c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Here's an example of how to do that:
```typescript
await call.getOrCreate({
data: {
starts_at: new Date(Date.now() + 5000), // 500 seconds from now
starts_at: new Date(Date.now() + 500 * 1000), // 500 seconds from now
settings_override: {
backstage: {
join_ahead_time_seconds: 300,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ Here's an example of how to do that:
```typescript
await call.getOrCreate({
data: {
starts_at: new Date(Date.now() + 5000), // 500 seconds from now
starts_at: new Date(Date.now() + 500 * 1000), // 500 seconds from now
settings_override: {
backstage: {
join_ahead_time_seconds: 300,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Here's an example of how to do that:
```typescript
await call.getOrCreate({
data: {
starts_at: new Date(Date.now() + 5000), // 500 seconds from now
starts_at: new Date(Date.now() + 500 * 1000), // 500 seconds from now
settings_override: {
backstage: {
join_ahead_time_seconds: 300,
Expand Down

0 comments on commit 5c6e8c7

Please sign in to comment.