Skip to content

Commit 2361390

Browse files
committed
Fix formatting errors
1 parent 9ba4e3d commit 2361390

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Source/Boxed.AspNetCore.TagHelpers/Twitter/Structs/TwitterPlayer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class TwitterPlayer
1717
/// </param>
1818
/// <param name="width">The width of the iFrame player in pixels.</param>
1919
/// <param name="height">The height of the iFrame player in pixels.</param>
20-
/// <exception cref="ArgumentNullException"><paramref name="playerUrl"/></exception>
20+
/// <exception cref="ArgumentNullException">The <paramref name="playerUrl"/> is <c>null</c>.</exception>
2121
/// <exception cref="ArgumentOutOfRangeException">
2222
/// <paramref name="width"/> and <paramref name="height"/> must be more than zero.
2323
/// </exception>
@@ -59,7 +59,7 @@ public TwitterPlayer(string playerUrl, int width, int height)
5959
/// audio and video with the following codecs: Video: H.264, Baseline Profile(BP), Level 3.0, up to 640 x 480 at
6060
/// 30 fps. Audio: AAC, Low Complexity Profile(LC).
6161
/// </param>
62-
/// <exception cref="ArgumentNullException"><paramref name="playerUrl"/></exception>
62+
/// <exception cref="ArgumentNullException">The <paramref name="playerUrl"/> is <c>null</c>.</exception>
6363
/// <exception cref="ArgumentOutOfRangeException">
6464
/// <paramref name="width"/> and <paramref name="height"/> must be more than zero.
6565
/// </exception>

Source/Boxed.AspNetCore/ConfigurationExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace Boxed.AspNetCore
44
using Microsoft.Extensions.Configuration;
55

66
/// <summary>
7-
/// <see cref="IConfiguration"/>
7+
/// <see cref="IConfiguration"/> extension methods.
88
/// </summary>
99
public static class ConfigurationExtensions
1010
{

Source/Boxed.AspNetCore/FriendlyUrlHelper.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public static class FriendlyUrlHelper
5656
/// return this.View(product);
5757
/// }
5858
/// </c>
59+
/// .
5960
/// </code>
6061
public static string GetFriendlyTitle(string title, bool remapToAscii = false, int maxlength = 80)
6162
{

Source/Boxed.AspNetCore/IAsyncCommand{T}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Boxed.AspNetCore
77
/// <summary>
88
/// Executes a single command with one parameter and returns a result.
99
/// </summary>
10-
/// <typeparam name="T">The type of the parameter</typeparam>
10+
/// <typeparam name="T">The type of the parameter.</typeparam>
1111
public interface IAsyncCommand<T>
1212
{
1313
/// <summary>

0 commit comments

Comments
 (0)