Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
Change code example to have two distinct variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaBehrens authored and jleifeld committed Oct 27, 2023
1 parent 71c17bc commit 20fc89f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/guide/2_api-reference/data/get.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ such as when opening a page, you won't receive any data. In these cases, it's be
data.get({
id: 'sw-product-detail__product',
selectors: ['name', 'manufacturer.name'],
}).then((data) => {
console.log(data);
}).then((product) => {
console.log(product);
});
```

Expand Down

0 comments on commit 20fc89f

Please sign in to comment.