You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix some `internal` classes being exposed
* update xmldoc comments to use `<see langword>`
* bump library version in samples
* fix possible oversight
Copy file name to clipboardExpand all lines: src/Discord.Net.Commands/CommandService.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -163,7 +163,7 @@ public async Task<ModuleInfo> CreateModuleAsync(string primaryAlias, Action<Modu
163
163
/// </code>
164
164
/// </example>
165
165
/// <typeparam name="T">The type of module.</typeparam>
166
-
/// <param name="services">The <see cref="IServiceProvider"/> for your dependency injection solution if using one; otherwise, pass <c>null</c>.</param>
166
+
/// <param name="services">The <see cref="IServiceProvider"/> for your dependency injection solution if using one; otherwise, pass <see langword="null" />.</param>
167
167
/// <exception cref="ArgumentException">This module has already been added.</exception>
168
168
/// <exception cref="InvalidOperationException">
169
169
/// The <see cref="ModuleInfo"/> fails to be built; an invalid type may have been provided.
@@ -178,7 +178,7 @@ public async Task<ModuleInfo> CreateModuleAsync(string primaryAlias, Action<Modu
178
178
/// Adds a command module from a <see cref="Type" />.
179
179
/// </summary>
180
180
/// <param name="type">The type of module.</param>
181
-
/// <param name="services">The <see cref="IServiceProvider" /> for your dependency injection solution if using one; otherwise, pass <c>null</c> .</param>
181
+
/// <param name="services">The <see cref="IServiceProvider" /> for your dependency injection solution if using one; otherwise, pass <see langword="null" /> .</param>
182
182
/// <exception cref="ArgumentException">This module has already been added.</exception>
183
183
/// <exception cref="InvalidOperationException">
184
184
/// The <see cref="ModuleInfo"/> fails to be built; an invalid type may have been provided.
@@ -217,7 +217,7 @@ public async Task<ModuleInfo> AddModuleAsync(Type type, IServiceProvider service
217
217
/// Add command modules from an <see cref="Assembly"/>.
/// <param name="services">The <see cref="IServiceProvider"/> for your dependency injection solution if using one; otherwise, pass <c>null</c>.</param>
220
+
/// <param name="services">The <see cref="IServiceProvider"/> for your dependency injection solution if using one; otherwise, pass <see langword="null" />.</param>
221
221
/// <returns>
222
222
/// A task that represents the asynchronous operation for adding the command modules. The task result
223
223
/// contains an enumerable collection of modules added.
0 commit comments