Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
starkdmi committed Dec 4, 2023
1 parent b251761 commit b8e1e08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ let task = await VideoTool.convert(
print("Started")
case .progress(let progress):
print("Progress: \(progress.fractionCompleted)")
case .completed(let url):
print("Done: \(url.path)")
case .completed(let info):
print("Done: \(info.url.path)")
case .failed(let error):
print("Error: \(error.localizedDescription)")
case .cancelled:
Expand Down Expand Up @@ -221,8 +221,8 @@ let task = await AudioTool.convert(
print("Started")
case .progress(let progress):
print("Progress: \(progress.fractionCompleted)")
case .completed(let url):
print("Done: \(url.path)")
case .completed(let info):
print("Done: \(info.url.path)")
case .failed(let error):
print("Error: \(error.localizedDescription)")
case .cancelled:
Expand Down

0 comments on commit b8e1e08

Please sign in to comment.