Skip to content

Commit 4790e70

Browse files
committed
Docs
1 parent 16f0ab3 commit 4790e70

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rendered = render_component(
1919
print(rendered)
2020
```
2121

22-
For client-side side integrations, refer to the [docs](#using-react-on-the-front-end).
22+
For client-side integrations, refer to the [docs](#using-react-on-the-front-end).
2323

2424

2525
Documentation
@@ -181,7 +181,7 @@ objects with the `markup` attribute as an empty string.
181181
In development environments, it can be easiest to set the `RENDER` setting to False. This ensures that the
182182
render server will not be used, hence you only need to manage your python process.
183183

184-
Be aware that the render servers provided in the example and elsewhere rely on Node.js's module system
184+
Be aware that the render servers provided in the examples and elsewhere rely on Node.js's module system
185185
which - similarly to Python - caches all modules as soon as they are imported. If you use the render
186186
server in a development environment, your code is cached and your changes will **not** effect the
187187
rendered markup until you reset the render server.
@@ -192,10 +192,10 @@ rendered markup until you reset the render server.
192192
In production environments, you should ensure that `RENDER` is set to True.
193193

194194
You will want to run the render server under whatever supervisor process suits your need. Depending on
195-
your setup, you may need to change the `RENDER_URL` setting to reflect your setup.
195+
your setup, you may need to change the `RENDER_URL` setting to reflect your environment.
196196

197-
When the render server wrapper connects to the JS process, it adds a `?hash=<SHA1>` parameter to the url. The
198-
hash parameter is generated from the serialized data that is sent in the request's body and is intended
197+
When the render server wrapper connects to the JS process, it adds a `?hash=...` parameter to the url. The
198+
hash parameter is a SHA-1 hash of the serialized data that is sent in the request's body and is intended
199199
for consumption by caching layers.
200200

201201
Depending on your load, you may want to put a reverse proxy in front of the render server. Be aware that

0 commit comments

Comments
 (0)