Skip to content

Commit 211ee29

Browse files
committed
to
1 parent 9305e7f commit 211ee29

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/getting-started/quick-start.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ end
450450

451451
* [x] Add the `like` action on the controller:
452452

453-
`app/controller/posts_controller.rb`
453+
`app/controllers/posts_controller.rb`
454454

455455
```ruby
456456
# ...
@@ -634,7 +634,7 @@ end
634634
* [x] Broadcast the `cable__created_post` event from the `create` action on the posts controller
635635
* [x] Broadcast the `cable__liked_post_xyz` event from the `like` action on the posts controller
636636

637-
`app/controller/posts_controller.rb`
637+
`app/controllers/posts_controller.rb`
638638

639639
```ruby
640640
# ...
@@ -983,7 +983,7 @@ end
983983

984984
* [x] Adjust the ActionCable broadcast on the `create` action on the post controller
985985

986-
`app/controller/posts_controller.rb`
986+
`app/controllers/posts_controller.rb`
987987

988988
```ruby
989989
# ...
@@ -1085,7 +1085,7 @@ end
10851085

10861086
* [x] Adjust the ActionCable broadcast on the `like` action on the post controller
10871087

1088-
`app/controller/posts_controller.rb`
1088+
`app/controllers/posts_controller.rb`
10891089

10901090
```ruby
10911091
# ...
@@ -1648,7 +1648,7 @@ end
16481648

16491649
* [x] Add the update action to the posts controller
16501650

1651-
`app/controller/posts_controller.rb`
1651+
`app/controllers/posts_controller.rb`
16521652

16531653
```ruby
16541654
# ...

0 commit comments

Comments
 (0)