Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Wrong documentation for recursive templates #785

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions docs/polymer/binding-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,13 +200,12 @@ You can use the `ref` attribute to define recursive templates, such as tree stru
{% raw %}
<template>
<template>
<ul>
<template repeat="{{items}}" id="t">
<li>{{name}}
<ul>
<template ref="t" repeat="{{children}}"></template>
</ul>
</li>
<li>{{name}}</li>
</template>
<ul>
<template ref="t" repeat="{{children}}"></template>
</ul>
</template>
</template>
{% endraw %}
Expand Down