From c72e8adeb116b3ef4b5a0f697d75e2f73152303f Mon Sep 17 00:00:00 2001 From: Rashidul Date: Sat, 23 Nov 2019 14:52:02 +0600 Subject: [PATCH] Add missing comma on readme sample code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4852fe92..4227479a 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ import RNBackgroundDownloader from 'react-native-background-downloader'; let task = RNBackgroundDownloader.download({ id: 'file123', - url: 'https://link-to-very.large/file.zip' + url: 'https://link-to-very.large/file.zip', destination: `${RNBackgroundDownloader.directories.documents}/file.zip` }).begin((expectedBytes) => { console.log(`Going to download ${expectedBytes} bytes!`);