File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ This loads the *polymer* icon from the default iconset: <core-icon icon="polymer
70
70
71
71
In the * iconset* directory
72
72
of ` core-icons ` you can find more interesting icon sets.
73
- If the icon is not part of the default icon set, it's name needs to be prefixed with the name of the icon set (e.g. ` set:iconname ` ). For example:
73
+ If the icon is not part of the default icon set, its name needs to be prefixed with the name of the icon set (e.g. ` set:iconname ` ). For example:
74
74
75
75
<core-icon icon="social:cake"></core-icon>
76
76
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ Consider the following templates:
104
104
{% raw %}
105
105
<template repeat =" {{user in users}} " >
106
106
<p >{{user.name}}</p >
107
- <template repeat =" {{alias is user.aliases}} " >
107
+ <template repeat =" {{alias in user.aliases}} " >
108
108
<p >a.k.a. {{alias}}</p >
109
109
</template >
110
110
</template >
@@ -118,13 +118,13 @@ whitespace is added around the template instances for readability.)
118
118
<pre class =" prettyprint " >
119
119
< ; template repeat="{{user in users}}">
120
120
< ; p>{{user.name}}< ; /p>
121
- < ; template repeat="{{alias is user.aliases}}">
121
+ < ; template repeat="{{alias in user.aliases}}">
122
122
< ; p>a.k.a. {{alias}}< ; /p>
123
123
< ; /template>
124
124
< ; /template>
125
125
126
126
< ; p>Bob< ; /p> <span class =" nocode " style =" color : red " ><em >⇐ start of 1st outer template instance</em ></span >
127
- < ; template repeat="{{alias is user.aliases}}">
127
+ < ; template repeat="{{alias in user.aliases}}">
128
128
< ; p>a.k.a. {{alias}}< ; /p>
129
129
< ; /template>
130
130
@@ -135,7 +135,7 @@ whitespace is added around the template instances for readability.)
135
135
136
136
137
137
< ; p>Elaine< ; /p> <span class =" nocode " style =" color : red " ><em >⇐ start of 2nd outer template instance</em ></span >
138
- < ; template repeat="{{alias is user.aliases}}">
138
+ < ; template repeat="{{alias in user.aliases}}">
139
139
< ; p>a.k.a. {{alias}}< ; /p>
140
140
< ; /template>
141
141
You can’t perform that action at this time.
0 commit comments