Skip to content

Commit 9f33b64

Browse files
committed
fix typo in README
1 parent a2c3ae0 commit 9f33b64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You can then use the library in your script:
2020
```javascript
2121
var { VideoUploader } = require('@api.video/video-uploader');
2222

23-
var uploader = new VideoUploader("#target", {
23+
var uploader = new VideoUploader({
2424
file: files[0],
2525
uploadToken: "YOUR_DELEGATED_TOKEN"
2626
// ... other optional options
@@ -40,7 +40,7 @@ You can then use the library in your script:
4040
```typescript
4141
import { VideoUploader } from '@api.video/video-uploader'
4242

43-
const uploader = new VideoUploader("#target", {
43+
const uploader = new VideoUploader({
4444
file: files[0],
4545
uploadToken: "YOUR_DELEGATED_TOKEN"
4646
// ... other optional options

0 commit comments

Comments
 (0)