Fix typos in Javadoc

This commit is contained in:
gardenapple 2021-08-11 12:01:18 +03:00
parent 78f2192cbb
commit 50bba32239
No known key found for this signature in database
GPG Key ID: CAF17E9ABE789268
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ import javax.annotation.Nonnull;
import static org.schabi.newpipe.extractor.subscription.SubscriptionExtractor.ContentSource.INPUT_STREAM; import static org.schabi.newpipe.extractor.subscription.SubscriptionExtractor.ContentSource.INPUT_STREAM;
/** /**
* Extract subscriptions from a Google takout export (the user has to get the JSON out of the zip) * Extract subscriptions from a Google takeout export (the user has to get the JSON out of the zip)
*/ */
public class YoutubeSubscriptionExtractor extends SubscriptionExtractor { public class YoutubeSubscriptionExtractor extends SubscriptionExtractor {
private static final String BASE_CHANNEL_URL = "https://www.youtube.com/channel/"; private static final String BASE_CHANNEL_URL = "https://www.youtube.com/channel/";

View File

@ -291,7 +291,7 @@ public abstract class StreamExtractor extends Extractor {
/** /**
* This will return a list of available * This will return a list of available
* <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/stream/Subtitles.html">Subtitles</a>s. * <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/stream/Subtitles.html">Subtitles</a>s.
* If no subtitles are available an empty list can returned. * If no subtitles are available an empty list can be returned.
* *
* @return a list of available subtitles or an empty list * @return a list of available subtitles or an empty list
* @throws IOException * @throws IOException
@ -304,7 +304,7 @@ public abstract class StreamExtractor extends Extractor {
* This will return a list of available * This will return a list of available
* <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/stream/Subtitles.html">Subtitles</a>s. * <a href="https://teamnewpipe.github.io/NewPipeExtractor/javadoc/org/schabi/newpipe/extractor/stream/Subtitles.html">Subtitles</a>s.
* given by a specific type. * given by a specific type.
* If no subtitles in that specific format are available an empty list can returned. * If no subtitles in that specific format are available an empty list can be returned.
* *
* @param format the media format by which the subtitles should be filtered * @param format the media format by which the subtitles should be filtered
* @return a list of available subtitles or an empty list * @return a list of available subtitles or an empty list