From 74d9b577be74f3a081aeb6982a93ae30c25389a7 Mon Sep 17 00:00:00 2001 From: jericho Date: Tue, 23 Jul 2024 10:27:20 -0400 Subject: [PATCH] (GH-352) Update XML comment to reflect updated signature of the IMeetings.GetAsync method --- Source/ZoomNet/Resources/IMeetings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/ZoomNet/Resources/IMeetings.cs b/Source/ZoomNet/Resources/IMeetings.cs index 0be7e0ef..3b291b56 100644 --- a/Source/ZoomNet/Resources/IMeetings.cs +++ b/Source/ZoomNet/Resources/IMeetings.cs @@ -26,7 +26,7 @@ public interface IMeetings /// An array of meeting summaries. /// /// - /// To obtain the full details about a given meeting you must invoke . + /// To obtain the full details about a given meeting you must invoke . /// [Obsolete("Zoom is in the process of deprecating the \"page number\" and \"page count\" fields.")] Task> GetAllAsync(string userId, MeetingListType type = MeetingListType.Scheduled, int recordsPerPage = 30, int page = 1, CancellationToken cancellationToken = default); @@ -43,7 +43,7 @@ public interface IMeetings /// An array of meeting summaries. /// /// - /// To obtain the full details about a given meeting you must invoke . + /// To obtain the full details about a given meeting you must invoke . /// Task> GetAllAsync(string userId, MeetingListType type = MeetingListType.Scheduled, int recordsPerPage = 30, string pagingToken = null, CancellationToken cancellationToken = default);