Skip to content

Commit 31719cc

Browse files
committed
Add trailing comma
1 parent be93b0f commit 31719cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ to run the model on your GPU (via WebGPU), you can do this by setting `device: '
8888
```javascript
8989
// Run the model on WebGPU
9090
const pipe = await pipeline('sentiment-analysis', 'Xenova/distilbert-base-uncased-finetuned-sst-2-english', {
91-
device: 'webgpu'
91+
device: 'webgpu',
9292
});
9393
```
9494

docs/snippets/1_quick-tour.snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ to run the model on your GPU (via WebGPU), you can do this by setting `device: '
4848
```javascript
4949
// Run the model on WebGPU
5050
const pipe = await pipeline('sentiment-analysis', 'Xenova/distilbert-base-uncased-finetuned-sst-2-english', {
51-
device: 'webgpu'
51+
device: 'webgpu',
5252
});
5353
```
5454

0 commit comments

Comments
 (0)