diff --git a/Source/ZoomNet/Resources/IUsers.cs b/Source/ZoomNet/Resources/IUsers.cs
index 87744869..edfdb7d4 100644
--- a/Source/ZoomNet/Resources/IUsers.cs
+++ b/Source/ZoomNet/Resources/IUsers.cs
@@ -10,7 +10,7 @@ namespace ZoomNet.Resources
/// Allows you to manage users.
///
///
- /// See Zoom documentation for more information.
+ /// See Zoom documentation for more information.
///
public interface IUsers
{
@@ -23,7 +23,7 @@ public interface IUsers
/// The current page number of returned records.
/// The cancellation token.
///
- /// An array of users.
+ /// An array of users.
///
Task> GetAllAsync(UserStatus status = UserStatus.Active, string roleId = null, int recordsPerPage = 30, int page = 1, CancellationToken cancellationToken = default);
diff --git a/Source/ZoomNet/Resources/IWebinars.cs b/Source/ZoomNet/Resources/IWebinars.cs
index 95d15593..7d1d5282 100644
--- a/Source/ZoomNet/Resources/IWebinars.cs
+++ b/Source/ZoomNet/Resources/IWebinars.cs
@@ -55,7 +55,7 @@ public interface IWebinars
/// The new webinar.
///
/// Thrown when an exception occured while creating the webinar.
- Task CreateScheduledWebinarAsync(string userId, string topic, string agenda, DateTime start, int duration, string password = null, WebinarSettings settings = null, IDictionary trackingFields = null, CancellationToken cancellationToken = default);
+ Task CreateScheduledWebinarAsync(string userId, string topic, string agenda, DateTime start, int duration, string password = null, WebinarSettings settings = null, IDictionary trackingFields = null, CancellationToken cancellationToken = default);
///
/// Creates a recurring webinar for a user.
diff --git a/Source/ZoomNet/Resources/Users.cs b/Source/ZoomNet/Resources/Users.cs
index bed38b73..f9df71f4 100644
--- a/Source/ZoomNet/Resources/Users.cs
+++ b/Source/ZoomNet/Resources/Users.cs
@@ -13,11 +13,11 @@
namespace ZoomNet.Resources
{
///
- /// Allows you to manage meetings.
+ /// Allows you to manage users.
///
///
///
- /// See Zoom documentation for more information.
+ /// See Zoom documentation for more information.
///
public class Users : IUsers
{
@@ -41,7 +41,7 @@ internal Users(Pathoschild.Http.Client.IClient client)
/// The current page number of returned records.
/// The cancellation token.
///
- /// An array of users.
+ /// An array of users.
///
public Task> GetAllAsync(UserStatus status = UserStatus.Active, string roleId = null, int recordsPerPage = 30, int page = 1, CancellationToken cancellationToken = default)
{
diff --git a/Source/ZoomNet/Resources/Webinars.cs b/Source/ZoomNet/Resources/Webinars.cs
index 0bd8d784..2a8f4e56 100644
--- a/Source/ZoomNet/Resources/Webinars.cs
+++ b/Source/ZoomNet/Resources/Webinars.cs
@@ -98,7 +98,7 @@ public Task> GetAllAsync(string userId, int
/// The new webinar.
///
/// Thrown when an exception occured while creating the webinar.
- public Task CreateScheduledWebinarAsync(string userId, string topic, string agenda, DateTime start, int duration, string password = null, WebinarSettings settings = null, IDictionary trackingFields = null, CancellationToken cancellationToken = default)
+ public Task CreateScheduledWebinarAsync(string userId, string topic, string agenda, DateTime start, int duration, string password = null, WebinarSettings settings = null, IDictionary trackingFields = null, CancellationToken cancellationToken = default)
{
var data = new JObject()
{
@@ -117,7 +117,7 @@ public Task CreateScheduledWebinarAsync(string userId, string topic, st
.PostAsync($"users/{userId}/webinars")
.WithJsonBody(data)
.WithCancellationToken(cancellationToken)
- .AsObject();
+ .AsObject();
}
///