Update documentation for `WebVTT.build`

pull/4070/head
syeopite 2023-08-24 16:27:06 -07:00
rodzic d371eb50f2
commit 4e97d8ad09
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: A73C186DA3955A1A
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -44,10 +44,10 @@ module WebVTT
end
end
# Returns the resulting `String` of writing WebVTT to the yielded WebVTT::Builder
# Returns the resulting `String` of writing WebVTT to the yielded `WebVTT::Builder`
#
# ```
# string = WebVTT.build do |io|
# string = WebVTT.build do |vtt|
# vtt.cue(Time::Span.new(seconds: 1), Time::Span.new(seconds: 2), "Line 1")
# vtt.cue(Time::Span.new(seconds: 2), Time::Span.new(seconds: 3), "Line 2")
# end