Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in dict_variables.rst #1680

Merged
merged 2 commits into from May 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion AUTHORS.md
Expand Up @@ -14,6 +14,8 @@
- Sorin Sbarnea ([@ssbarnea](https://github.com/ssbarnea))
- Fábio C. Barrionuevo da Luz ([@luzfcb](https://github.com/luzfcb))
- Simone Basso ([@simobasso](https://github.com/simobasso))
- Jens Klein ([@jensens](https://github.com/jensens))
- Érico Andrei ([@ericof](https://github.com/ericof))

## Contributors

Expand Down Expand Up @@ -169,7 +171,6 @@
- Tom Forbes ([@orf](https://github.com/orf))
- Xie Yanbo ([@xyb](https://github.com/xyb))
- Maxim Ivanov ([@ivanovmg](https://github.com/ivanovmg))
- Jens Klein ([@jensens](https://github.com/jensens))

## Backers

Expand Down
3 changes: 1 addition & 2 deletions docs/advanced/dict_variables.rst
Expand Up @@ -39,7 +39,7 @@ For example, you could provide the following dictionary variable in your ``cooki
}


The above ``file_type`` dictionary variable creates ``cookiecutter.file_types``, which can be used like this:
The above ``file_types`` dictionary variable creates ``cookiecutter.file_types``, which can be used like this:

.. code-block:: html+jinja

Expand All @@ -64,4 +64,3 @@ The above ``file_type`` dictionary variable creates ``cookiecutter.file_types``,


Cookiecutter is using `Jinja2's for expression <http://jinja.pocoo.org/docs/dev/templates/#for>`_ to iterate over the items in the dictionary.