1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-25 19:22:21 +00:00

Merge pull request #206 from Molunerfinn/fix-code-style

Fix coding style in docs/string.md
This commit is contained in:
Ruan YiFeng 2016-05-20 10:05:07 -05:00
commit f7914b3de6

View File

@ -522,7 +522,7 @@ func('Jack') // "Hello Jack!"
```javascript ```javascript
var template = ` var template = `
<ul> <ul>
<% for(var i=0; i < data.supplies.length; i++) {%> <% for(var i=0; i < data.supplies.length; i++) { %>
<li><%= data.supplies[i] %></li> <li><%= data.supplies[i] %></li>
<% } %> <% } %>
</ul> </ul>