Skip to content

Commit ec031e1

Browse files
authored
DependencyService API docs fixes (#31392)
Some small fixes for the API docs in .NET 10
2 parents 337728d + 055c65b commit ec031e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Controls/src/Core/DependencyFetchTarget.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace Microsoft.Maui.Controls
22
{
3-
/// <summary>Enumeration specifying whether <see cref="M:Microsoft.Maui.Controls.DependencyService.Get`{T}(Microsoft.Maui.Controls.DependencyFetchTarget)"/> should return a reference to a global or new instance.</summary>
3+
/// <summary>Enumeration specifying whether <see cref="DependencyService.Get{T}(DependencyFetchTarget)"/> should return a reference to a global or new instance.</summary>
44
public enum DependencyFetchTarget
55
{
66
/// <summary>Return a global instance.</summary>

src/Controls/src/Core/DependencyService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace Microsoft.Maui.Controls
1010
{
11-
/// <summary>Static class that provides the <see cref="M:Microsoft.Maui.Controls.DependencyService.Get`{T}(Microsoft.Maui.Controls.DependencyFetchTarget)"/> factory method for retrieving platform-specific implementations of the specified type T.</summary>
11+
/// <summary>Static class that provides the <see cref="DependencyService.Get{T}(DependencyFetchTarget)"/> factory method for retrieving platform-specific implementations of the specified type T.</summary>
1212
public static class DependencyService
1313
{
1414
static bool s_initialized;

0 commit comments

Comments
 (0)