Not understanding documentation

<h1>{{ question.question_text }}</h1>
<ul>
{% for choice in question.choice_set.all %}
    <li>{{ choice.choice_text }}</li>
{% endfor %}
</ul>

what is that _set.all inside for loop. its giving me a queryset

See the docs for Related Objects reference.