From 656b7c1cd922851b9c04d2493e298da6790a2a66 Mon Sep 17 00:00:00 2001 From: FireMasterK <20838718+FireMasterK@users.noreply.github.com> Date: Tue, 8 Feb 2022 12:06:19 +0000 Subject: [PATCH] Improve method documentation. --- .../org/schabi/newpipe/extractor/comments/CommentsInfo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extractor/src/main/java/org/schabi/newpipe/extractor/comments/CommentsInfo.java b/extractor/src/main/java/org/schabi/newpipe/extractor/comments/CommentsInfo.java index 73dfa8ab..7386716c 100644 --- a/extractor/src/main/java/org/schabi/newpipe/extractor/comments/CommentsInfo.java +++ b/extractor/src/main/java/org/schabi/newpipe/extractor/comments/CommentsInfo.java @@ -113,7 +113,7 @@ public final class CommentsInfo extends ListInfo { /** * Returns the total number of comments. * - * @return totalComments + * @return commentsCount the total number of comments. */ public int getCommentsCount() { return commentsCount; @@ -122,7 +122,7 @@ public final class CommentsInfo extends ListInfo { /** * Sets the total number of comments. * - * @param commentsCount + * @param commentsCount the commentsCount to set. */ public void setCommentsCount(int commentsCount) { this.commentsCount = commentsCount;