Skip to content

Commit

Permalink
Merge pull request #69 from fapian/fix-readmes
Browse files Browse the repository at this point in the history
Fix README example
  • Loading branch information
shiyanhui authored Jun 7, 2019
2 parents ca03860 + 2f995f8 commit 134e00d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ There are only nine necessary kinds of statements, which are:
- Example:
```go
<% for _, user := userList { %>
<% for _, user := range userList { %>
<% if user != "Alice" { %>
<%= user %>
<% } %>
Expand Down
2 changes: 1 addition & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ Hero总共有九种语句,他们分别是:
- 例:

```go
<% for _, user := userList { %>
<% for _, user := range userList { %>
<% if user != "Alice" { %>
<%= user %>
<% } %>
Expand Down

0 comments on commit 134e00d

Please sign in to comment.