Skip to content

Commit 429b3ce

Browse files
committed
Update save method
1 parent c8776e4 commit 429b3ce

File tree

1 file changed

+2
-2
lines changed
  • docs/technical-details/reference

1 file changed

+2
-2
lines changed

docs/technical-details/reference/blob.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ Alternately, we can also wait for the blob to be fully written to storage before
4747

4848
```javascript
4949
let blob = await createBlob(stream);
50-
// at this point the blob exists, but the data is still being written to storage
51-
await blob.finished;
50+
// at this point the blob exists, but the data is was not been written to storage
51+
await blob.save(MyTable);
5252
// we now know the blob is fully written to storage
5353
await MyTable.put({ id: 'my-record', data: blob });
5454
```

0 commit comments

Comments
 (0)