Skip to content

Commit

Permalink
docs: prefer "questionnaire" over "questionary"
Browse files Browse the repository at this point in the history
  • Loading branch information
sisp committed Dec 1, 2023
1 parent df2c623 commit 68ad08c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions copier/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Worker:
Specify the VCS tag/commit to use in the template.
data:
Answers to the questionary defined in the template.
Answers to the questionnaire defined in the template.
exclude:
User-chosen additional [file exclusion patterns][exclude].
Expand Down Expand Up @@ -407,7 +407,7 @@ def _render_allowed(
return self._solve_render_conflict(dst_relpath)

def _ask(self) -> None:
"""Ask the questions of the questionary and record their answers."""
"""Ask the questions of the questionnaire and record their answers."""
result = AnswersMap(
user_defaults=self.user_defaults,
init=self.data,
Expand Down
4 changes: 2 additions & 2 deletions docs/configuring.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ they become available to the project template.
your_email: ""
```

Will result in a questionary similar to:
Will result in a questionnaire similar to:

<pre style="font-weight: bold">
🎤 name_of_the_project
Expand Down Expand Up @@ -1357,7 +1357,7 @@ This allows you to keep separate the template metadata and the template code.
1. Ignore instructions for projects generated with the template.

However, it is true that the value of this option can itself be templated. This would
let you have different templates that all use the same questionary, and the used
let you have different templates that all use the same questionnaire, and the used
template would be saved as an answer. It would let the user update safely and change
that option in the future.

Expand Down
2 changes: 1 addition & 1 deletion docs/updating.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ copier update --defaults
```

If you want to change just one question, and leave all others untouched, and don't want
to go through the whole questionary again:
to go through the whole questionnaire again:

```shell
copier update --defaults --data updated_question="my new answer"
Expand Down

0 comments on commit 68ad08c

Please sign in to comment.