Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
[strings] fix example
  • Loading branch information
hshoff committed Mar 27, 2015
commit 081fedeec4e7721e8d8fd9334cac39844213c14f
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
items[i] = messages[i].message;
}

return '<ul><li>' + items.join('</li><li>') + '</li></ul>';
return '<ul>' + items.join('</li><li>') + '</ul>';
}
```

Expand Down