Skip to content

Commit 97168fe

Browse files
authored
Merge pull request #108 from kpavlovsky/patch-1
Fixed column name in example app
2 parents f1a629c + f71dd86 commit 97168fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/tutorial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ The HTML/JS code will look like this:
267267
<th data-data="artist.name" data-name="artist.name">Artist</th>
268268
<th data-data="name">Album name</th>
269269
<th data-data="year">Year</th>
270-
<th data-data="genres" data-name="genres.name">Year</th>
270+
<th data-data="genres" data-name="genres.name">Genres</th>
271271
</tr>
272272
</thead>
273273
</table>
@@ -312,7 +312,7 @@ We could also have written that in a more conventional form (without data attrib
312312
<th>Artist</th>
313313
<th>Album name</th>
314314
<th>Year</th>
315-
<th>Year</th>
315+
<th>Genres</th>
316316
</tr>
317317
</thead>
318318
</table>

0 commit comments

Comments
 (0)