Skip to content

Commit fdd16b2

Browse files
committed
title case
1 parent 9ea9b11 commit fdd16b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/getting-started/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,15 +939,15 @@ end
939939
Everything should be the same after this small refactoring.
940940

941941

942-
942+
## The Cable Component
943943

944944
Now we will cover the last topic of this guide:
945945

946946
As described before, the `async` rerenders it's whole body. The `async` wrapping the whole post list therefore rerenders ALL posts. If our list of posts grows, the performance of the rerendering will decrease. In a lot of usecases, this will not be an issue since the UI is not too big/too complex. So go ahead and use `async` everywhere you're not rerendering big or complex UIs and enjoy the simplicity of that rerendering approach!
947947

948948
But now imagine, your post list will be too big at some point. We should switch the reactivity approach to a more granular on. Let's use the `cable` component alongside our already added ActionCable introduction and reuse pretty much all written code!
949949

950-
## Use the `cable` component for list rerendering
950+
## Use the `cable` Component For List Rerendering
951951

952952
* [x] Use the `cable` instead of the `async` component
953953

0 commit comments

Comments
 (0)