Fix spelling error

Change-Id: Id76761c07868d67fbff1100d9a3aa56123f4a9dd
This commit is contained in:
Kasper Nilsson
2017-05-17 12:37:16 -07:00
parent ca52a0d977
commit ed91c53bec

View File

@@ -261,7 +261,7 @@
if (block.type === 'list') {
const ul = document.createElement('ul');
for (const item of bloc.items) {
for (const item of block.items) {
const li = document.createElement('li');
li.appendChild(this._makeLinkedText(item));
ul.appendChild(li);