Skip to content

Commit

Permalink
Merge pull request #494 from bem/Yeti-or-patch-1
Browse files Browse the repository at this point in the history
Fix appendContent mode docs
  • Loading branch information
Yeti-or authored Dec 17, 2017
2 parents de894ef + 426d832 commit 36e253c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/en/5-templates-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ content.
block('quote')(
prependContent()(''), // add some things before actual content
appendContent()(''), // add content to the end
appendContent({ block: 'link' }); // add more content to the end
appendContent()({ block: 'link' }) // add more content to the end
);
```
```js
Expand Down
2 changes: 1 addition & 1 deletion docs/ru/5-templates-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ content()(value)
block('quote')(
prependContent()('«'),
appendContent()('»'),
appendContent({ block: 'link' });
appendContent()({ block: 'link' })
);
```

Expand Down

0 comments on commit 36e253c

Please sign in to comment.