{% if item.return %}
  <h3 class="item__sub-heading">Returns</h3>

  <div class="item__description  item__description--inline">
  {% if item.return.type == '*' %}
    Any type
  {% else %}
    <code>{{ item.return.type | display_as_type }}</code>
  {% endif %}
  {% if item.return.description %} &mdash; {{ item.return.description|safe }}{% endif %}
  </div>
{% endif %}
