Skip to content

Commit

Permalink
fix syntax and spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
JHWelch committed Oct 29, 2024
1 parent bd8af06 commit f042d1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ return [
],

/*
* The id of the Google Calendar that will be used by default.
* The id of the Google Calendar that will be used by default.
*/
'calendar_id' => env('GOOGLE_CALENDAR_ID'),
];
Expand Down Expand Up @@ -285,7 +285,7 @@ $event->save();
Alternatively, you can use the update method:

```php
$event = Event::find($eventId)
$event = Event::find($eventId);

$event->update(['name' => 'My updated title']);
```
Expand All @@ -308,8 +308,8 @@ You can set source urls in your events, which are only visible to the creator of
$yourEvent->source = [
'title' => 'Test Source Title',
'url' => 'http://testsource.url',
];
```
];
```

## Setting a color

Expand Down

0 comments on commit f042d1c

Please sign in to comment.