docs: update wording of client-side rendering explanation (#5049)

This commit is contained in:
Udofia, Godwin 2022-05-20 10:10:28 +01:00 committed by GitHub
parent 557c40c97f
commit cad9ce4a6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ While this technique allows building complex and dynamic UIs with smooth page tr
### Examples
Client-side rendering is a good choice for heavily interactive **web applications** that don't need indexing or frequently use the same users. It can leverage browser caching to skip the download phase on subsequent visits, such as **SaaS, back-office applications, or Online Games**.
Client-side rendering is a good choice for heavily interactive **web applications** that don't need indexing or whose users visit frequently. It can leverage browser caching to skip the download phase on subsequent visits, such as **SaaS, back-office applications, or online games**.
## Universal Rendering