Fix some bad doc comment links to IoCManager.Resolve{T}()

This commit is contained in:
Pieter-Jan Briers
2022-11-12 12:23:12 +01:00
parent 2fe0c94d84
commit a416eedff0
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ using System.Runtime.Serialization;
namespace Robust.Shared.IoC.Exceptions
{
/// <summary>
/// Thrown by <see cref="IoCManager.Resolve{T}"/> if one attempts to resolve an interface that isn't registered.
/// Thrown by <see cref="IoCManager.Resolve{T}()"/> if one attempts to resolve an interface that isn't registered.
/// </summary>
[Serializable]
[Virtual]

View File

@@ -4,7 +4,7 @@ namespace Robust.Shared.IoC
/// If implemented on a type instantiated by IoC,
/// <see cref="IPostInjectInit.PostInject" /> will be called after all dependencies have been injected.
/// Do not assume any order in the initialization of other managers,
/// Or the availability of things through <see cref="IoCManager.Resolve{T}" />
/// Or the availability of things through <see cref="IoCManager.Resolve{T}()" />
/// </summary>
/// <seealso cref="IoCManager" />
/// <seealso cref="DependencyAttribute" />

View File

@@ -322,7 +322,7 @@ namespace Robust.UnitTesting
/// <summary>
/// Resolve a dependency inside the instance.
/// This works identical to <see cref="IoCManager.Resolve{T}"/>.
/// This works identical to <see cref="IoCManager.Resolve{T}()"/>.
/// </summary>
/// <exception cref="InvalidOperationException">
/// Thrown if you did not ensure that the instance is idle via <see cref="WaitIdleAsync"/> first.