Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ Please note this is an *optional* feature, not a mandatory one: you don't need t
Technically speaking, in the template literal tags world all values part of the template are called *interpolations*.

```js
const tag = (template, interpolations) => {
const tag = (template, ...interpolations) => {
console.log(template.join());
// logs "this is , and this is ,"
console.log(interpolations);
Expand Down
Loading