Skip to content

Commit

Permalink
Fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
theninthsky committed Nov 29, 2022
1 parent 9e4c8a2 commit b7f9c0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -800,10 +800,10 @@ When using server-side rendering, it is most common to fetch the (dynamic) data
This practice has a lot of sense to it, and fetching data on the browser will make the choice of using SSR completely unreasonable (it even falls behind CSR's performance since the fetch will occur only after the entire hydration process is finished).
However, inlining the data in the HTML has one major flaw: it eliminates the natural seperation between the app and the dynamic data.
The implications of this can be seen when trying to serve users cached pages:
<br>
It's obvious that we would like our app to load fast for all of our user. But since every user has a different connection speed, some users will see their requested pages only after several seconds.
The implications of this can be seen when trying to serve users cached pages.
It's obvious that we want our app to load fast for every user and especially for returning users. But since every user has a different connection speed, some users will see their requested pages only after several seconds.
<br>
In addition, even those with fast interent connection will have to pay the price of the initial connection before even starting to download their desired page:

Expand Down

0 comments on commit b7f9c0e

Please sign in to comment.