Skip to content

Commit b7138da

Browse files
Corrected spelling implictly > implicitly (#30360)
* Corrected spelling implictly> implicitly
1 parent 419da96 commit b7138da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Mvc/Mvc.Core/src/ActionResultOfT.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public ActionResult(ActionResult result)
5757
public TValue Value { get; }
5858

5959
/// <summary>
60-
/// Implictly converts the specified <paramref name="value"/> to an <see cref="ActionResult{TValue}"/>.
60+
/// Implicitly converts the specified <paramref name="value"/> to an <see cref="ActionResult{TValue}"/>.
6161
/// </summary>
6262
/// <param name="value">The value to convert.</param>
6363
public static implicit operator ActionResult<TValue>(TValue value)
@@ -66,7 +66,7 @@ public static implicit operator ActionResult<TValue>(TValue value)
6666
}
6767

6868
/// <summary>
69-
/// Implictly converts the specified <paramref name="result"/> to an <see cref="ActionResult{TValue}"/>.
69+
/// Implicitly converts the specified <paramref name="result"/> to an <see cref="ActionResult{TValue}"/>.
7070
/// </summary>
7171
/// <param name="result">The <see cref="ActionResult"/>.</param>
7272
public static implicit operator ActionResult<TValue>(ActionResult result)

0 commit comments

Comments
 (0)