Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Thoroldvix committed Jun 13, 2024
1 parent 88075ba commit 3f9d1f2
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,8 @@ for [finding specific transcripts](#find-transcripts) by language or by type (ma
TranscriptList transcriptList = youtubeTranscriptApi.listTranscripts("videoId");

// Iterate over transcript list
for(
Transcript transcript :transcriptList){
System.out.

println(transcript);
for(Transcript transcript : transcriptList) {
System.out.println(transcript);
}

// Find transcript in specific language
Expand Down

0 comments on commit 3f9d1f2

Please sign in to comment.