[docs] Fixed two typos in cdist-real-world.rst

Signed-off-by: Jaak Ristioja <jaak@ristioja.ee>
This commit is contained in:
Jaak Ristioja 2020-06-03 23:15:38 +03:00
parent 46574fc577
commit e1ff1bfdff
No known key found for this signature in database
GPG Key ID: 64BDA03A632612EB
1 changed files with 2 additions and 2 deletions

View File

@ -198,7 +198,7 @@ We require package uWSGI present in order to create **/etc/uwsgi/apps-enabled/$u
Installation of uWSGI also creates configuration layout: **/etc/uwsgi/apps-enabled**.
If this directory does not exist then **__file** type would error.
We also use stdin as file content source. For details see `Input from stdin <cdist-type.html#input-from-stdin>`_.
For feading stdin we use here-document (**<<** operator). It allows redirection of subsequent
For feeding stdin we use here-document (**<<** operator). It allows redirection of subsequent
lines read by the shell to the input of a command until a line containing only the delimiter
and a newline, with no blank characters in between (EOF in our case).
@ -546,7 +546,7 @@ we have changed our **wsgi.py** file uWSGI reloads the application.
Our application selects and lists items from **items** table.
Openning application
Opening application
~~~~~~~~~~~~~~~~~~~~
Finally try the application::